Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. You're assigning a new row to objDR but adding objNewDataRow to the Rows.Add method. Is that a typo?
  2. Can I assume that you're attempting to open a remote application?
  3. try this... try { //''code goes here. } Catch COMException ce { Context.Trace.Write (ce, "COMException caught.") ; switch (ce.ErrorCode ) case &H80070005 : throw new SecurityException("something", ce) ; //''Additional statement go here. break; } }
  4. LOL
  5. Robby

    C# Book

    If you want general C# then Wrox Professional C#, 2nd Edition http://www.wrox.com/books/toc/0764543989_toc.shtml
  6. Robby

    C# Book

    I assume you want it primarily for ASP.NET ? If so, the check out Wrox Professional ASP.NET 1.0, Special Edition http://www.wrox.com/books/toc/0764543962_toc.shtml
  7. You can have a look at VolteFace's sample on splash screens here ...http://www.xtremedotnettalk.com/showthread.php?threadid=77706
  8. If it takes that long too load the main page then perhaps you should consider a splash screen to be displayed prior to any taxing process commences.
  9. I don't know, you would have to try it.
  10. use ControlChars.Tab (tab) or ControlChars.NewLine (for a new line)
  11. Wyrd is right, http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/#1.2 and http://www.microsoft.com/downloads/details.aspx?FamilyID=78974b4d-1bc6-4f29-8bd5-5ad5a37c7408&displaylang=en
  12. btw, This book is not bad ... http://www.microsoft.com/mspress/books/5960.asp
  13. I dabbled with a few test apps on PPC, it's not hard to pick up. There's a built-in emultor test-run the apps, the thing to get over is that you can only view one form at a time.
  14. Look here ... http://www.xtremedotnettalk.com/showthread.php?threadid=73184&highlight=resolution
  15. You can use the following... Cursor.Current = Cursors.WaitCursor 'hourglass Cursor.Current = Cursors.Default 'default Cursor.Current = New Cursor(Application.StartupPath & "\myCursor.cur") 'custom
  16. One way could be to place a frame on your page and size it to span the entire browser, then place all subsequent pages in that frame.
  17. Are you binding the grid on each postback? ensure that your page load event has this in it... If not IsPostBack then 'bind grid here end if
  18. This doesn't sound right, server.transfer should give the same result, is there any way that a different page is being pulled, maybe one that doesn't use the CSS file?
  19. Robby

    cross page

    It's up to you to develop your own User control, there are plenty of articles out there. start with this one .... http://docs.aspng.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/webpagelets.aspx You can view my sample of templates here ... http://www.xtremedotnettalk.com/showthread.php?threadid=78721
  20. Check this out ...http://www.xtremedotnettalk.com/showthread.php?threadid=78363
  21. So does your IIS service remain started? (Using Services not VS.NET)
  22. They have to set those permissions for each sub-web you request(including the main web which you are having trouble with) Can you post your web.config file, save it as TXT for this forum.
  23. Ask them if they granted permission to ASPNET as a user of that directory
  24. Does the host support .NET ?
  25. Robby

    javascript

    it should be 'input' not 'prompt', also, don't you think that some of this should be done on the server, anyone can view the hard-coded password.
×
×
  • Create New...