Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. you can check the connection... If mySqlConn.State = ConnectionState.Closed Then mySqlConn.Open() endif
  2. Robby

    datagrid

    I was talking about the Design-Time property, but yeah, 'autogeneratecolumns' will work at run-time.
  3. If you create a new project/solution does it work?
  4. Robby

    datagrid

    Is the property "Create columns at runtime" set to True?
  5. try using a function instead of a sub.. Private Function SetFocus(ByVal ctlName As String) As String 'your code Return sb End Function
  6. You made the validator type="Date" but the DateTime.Today.ToShortDateString is a string.
  7. When you remove the () it is thae same as ... If Not a Or Not b Then
  8. Import the myClass then declare a var as MyClass, then do var.myMethod
  9. Hopefully A and B are both Boolean type, because Option Strict would complain.
  10. Is this a new application that you created?
  11. you can use the Net.WebClient.
  12. Do you want the column count (or size) or the row count?
  13. Are you adding the record to a Dataview or which object?
  14. DO you have an ID column in Supplier?
  15. You can add new items to the DataView as well as calling the Udpate of the dataAdapter (or an Update statement to a ExecutNonQuery of the Command object)
  16. I would use the Datareader.
  17. bin folder
  18. As simple as uploading the aspx, dll and config files to the server. If you want to develop on the server in real-time they need to support Front Page extensions.
  19. Create them at run-time.
  20. Once again, where are the data and images coming from?
  21. Where are you getting the info or images from? If you use a database for the info, you can easily randomize which item to display.
  22. I think 200 sets of anything on one page is too much. It's up to you if you prefer it that way.
  23. Sorry I misunderstood your question. I would put a bunch of OrElse together and list the types (jpg,gif, bmp, etc) For example, I wouldn't allow PCX format. (but that's just me)
  24. *Thinking out loud here* Perharps create only 10 sets of radibuttonlists, (one for each category) once the user answers the first question from each category (1 to 10) then Postback (click a button) and you then use the same list to display the next set (11 to 20).
×
×
  • Create New...