Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Did you add the dropdownlist at run-time, if so, did you add an event handler?
  2. When you login there is a check box.
  3. Yeah, I noticed it today as well.
  4. if you set 'Option Strict On' you cannot do this... s -=1000000000000 'subtract 1 trillion form the value
  5. This is very possible, each page of the wizard has a picture property, you simply change it from 'default' to whatever image you want. I'll post a step-by-step tonight, I don't have .NET available right now.
  6. Where will the user enter the data? In a Datagrid, Textbox ... ?
  7. Do you have a question or you just sharing some code?
  8. Eloff, is this in response to something?
  9. You need to Add a Handler for the text box, also, you don't need to declare it twice. AddHandler txtRank.DoubleClick, AddressOf txtRank_DoubleClick
  10. I have never used MethodInvoker, instead why not just call ProcessData. It's worked for me.
  11. Disasterpiece, you should really consider the solution provided by Tim (quwitw), or something similar. Creating a table specifically for a user should not even be considered in your design.
  12. Can you post some of the code that pertains to Me.Data1.Recordset, because I have no idea how the wizard handled it.
  13. Robby

    Code Behind

    Do you want to put the data into a Grid or html table?
  14. I would setup a new controls using all new ADO.NET methods, I'm not sure how the upgrade wizard implemented the rest of your data controls, but I'm certain it's not pretty.
  15. are you sure that intSSN contains a value? do... messagebox.show(intSSN)
  16. I'm guessing intSSN and SSN (field) and Integers, if so, remove the single quotes surrounding intSSN. "....WHERE Education.SSN=" & intSSN
  17. The answer is here http://www.visualbasicforum.com/showthread.php?threadid=41897&highlight=prompt
  18. Yes there is a way, if it's an auxiliary window (as Derek just said). I'll try and find a sample later today.
  19. All you need is to provide a link to the PDF file, it will launch Acrobat on its' own.
  20. No, the only way to hold leading zeros in a field is to set the data type to string (text).
  21. Robby

    Basic one....

    F5 compiles the project, then launches the page. Let's say the IDE is able to include the QueryString, this doesn't help the end-user. I guess you can use Session variables to verify if it's the first page of the user's session.
  22. Is this SQL Server or Access? For SQL Server use "Create Table myTable" & UserName
  23. I'm not sure if XP ships with IE6, but I'll ask anyway, do you have IE6 installed?
  24. you can change the style in User Options
  25. yeah I noticed it after I had already replied.
×
×
  • Create New...