Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Putting columns in a dropdown can be done by concatinating fields within your sql select statement, even padding with Tab keys can be in there as well. This is a crude solution and you won't get a line dividing the column either.
  2. I thought you already had VS.NET, or is it that you only have VB.NET?
  3. You don't need a code generator, you can can do this with some logic and a couple of nested loops. Can you spell out what the user can select and how things are presented.
  4. Thst's exactly what an ASP.NET application is designed for.
  5. It very well could be but I can't be sure. Perhaps someone else can answer that part.
  6. Mothra, yeah I ment that it should be On out of the box.
  7. It depends what they do, but generaly they should run side-by-side without problems.
  8. How will you run both? Will they interact?
  9. I see no valid reason for using in-line code at all. Also when you deploy an aspx file, you're code behind will stay in a compiled DLL.
  10. At the top of each code page place the following... Option Explicit On Option Strict On You're obviously trying to assign something to an Integer Variable that is not of Integer type.
  11. Not huge, less than 20 files, I can't remember if it was WinForms or WebForms. At the time I had a theory of what may have caused it, but it slips my mind at this time, sorry. * Seems to me like Robby can't remember much lately. * :)
  12. The same thing happened to me a while back, I ported all the files into a new project and all was fine thereafter. I really don't know what caused it and I didn't take the time to research it.
  13. you can probably extract it from dv.Sort
  14. You can use Page.Controls.Add( New LiteralControl("<TD>")) or something like that. Or design all the <TD> tags and place ASP Label controls within them (at design-time) and pass your values to these labels.
  15. I don't use <%%>, but as far as I know there is no auto complete in those tags.
  16. One thing that should have been set on by default in VB.NET is Option Strict and Option Explicit, I pretty much refuse to help people that do not set these. As far as C# or VB.NET, I don't care which I use, they're both perfect.
  17. There's an option in tools.. in the text editor section look for HTML. (autocomplete or something)
  18. I think I did something like this where I did not loop through the dv, I'll have a look for the project this evening.
  19. You can create a stored proc to do your paging, so that each results set returned is only as large as your page size. (let's say 50) You don't want a result of 800,000 records that's for sure.
  20. I don't know if this can be an option for you... I usually force the selected item to be unselected when the client sorts.
  21. It sounds like an endless loop, maybe.
  22. How about just providing a link to the file.
  23. :)
  24. Robby

    Error Message

    If it's using the events of StartMe then you need to pass along obj and e, otherwise remove the args from the Sub declaration since it doesn't look like you're using them in CheckUser().
  25. Robby

    Error Message

    It sounds like CheckUser() has some arguments that you are not passing in your call to it. Is this a function you created?
×
×
  • Create New...