Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Yes, if you overload the fuction, meaning that you need to create the let's say three functions with the same name but different signature on each, eg. Private myFunc() as string 'TODO End Function Private myFunc(x as integer) as string 'TODO End Function Private myFunc(x as integer, y as integer) as string 'TODO End Function Private myFunc(x as integer, y as integer, s as string) as string 'TODO End Function
  2. Have a look at this .... http://www.xtremedotnettalk.com/showthread.php?threadid=78721 There is a method for using dynamic css files in there.
  3. So the admin will select a CSS from the dropDown and have the all the pages use this newly selected CSS file, is this correct?
  4. You can iterate the controls.. Dim c As Control For Each c In Me.Controls If TypeOf c Is TextBox Then c.Dispose() End If Next I suggest placing the textboxes in a Panel so you can simply loop it instead the entire form. For Each c In Panel1.Controls
  5. Is one of your controls using Server.Transfer to reload the page in question? If not can you paste your code here.
  6. change LOANAPPL_TB.APPL_DT > '30-DEC-03' to something like that LOANAPPL_TB.APPL_DT > to_char('30-DEC-03', "DD-MMM-YY")
  7. I think you need to set it for IUser<machine_name>
  8. This thread is no longer accepting posts, please start a new thread. Thanks
  9. Re-formatting would wipe your hard disk and you would lose everything.
  10. 1 I prefer DLL 2 Yes, but you may consider keeping it as a function and simply returning a boolean to indicate success or fail of the delegate or sub (called from the web method). 3 Yes 4 Yes, no problems that I know of.
  11. Do you want Notes_CBX to get its' values from the datatable ?
  12. Now that you've got it working let us know when you're ready to add security. Good luck
  13. The trojan is probably hindering your system ops. I would re-format the HDD
  14. Robby

    timer

    You need to implement a client side time.
  15. Is CallSchedulingII.SecurityMain the correct Namespace and Class ? Since you have not implemented any security yet (in web.config), then delete the virtual dir and re-create it without changing any security settings. My point is to get this up and running prior to implementing security.
  16. Good question, sounds like it might. I would contact MS about this.
  17. Yeah that's what I ment --- CurrentCellChanged
  18. Come to think of it their (Webmatrix) entire pitch was that you don't need IIS, so I don't know what the new version is up to. Sorry I couldn't help.
  19. read my second post (above)
  20. Not sure if this helps.... You can use SelectedCellChange, it is triggered when you first enter a cell.
  21. Don't you mean a TD tag ?
  22. It seems that Web Matrix does work on XP Home but you need IIS 5.5 Here's what they say.... What are the System Requirements for ASP.NET Web Matrix? ASP.NET Web Matrix is supported on Windows 2000 (Professional and Server editions) and Windows XP (Home, Professional) operating systems. You must have IE 5.5 or greater and the .NET Framework installed.
  23. You need XP Pro or Win 2000 in order to setup and configure IIS5, this is a must if you want to develop any .NET web apps.
  24. Did you change any of the Debug settings of the project?
  25. I'm sure that egypt is safer then some other countries surrounding it.
×
×
  • Create New...