Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Robby

    ASP Moving

    Arch, you cannot re-sort if the user selects an item in the grid far down the page. SmartNav is the choice in this case.
  2. Good stuff, glad you found it.
  3. I'm sick and tired of MS bashing, if they don't like it let them work on Mac, Linux or something else that may be from the last generation of ..... :mad: When they say they're forced to work with MS products well too bad then go into another line of work. Arch4ngel, I have to disagree with your ADO comment, I tested the old against the new running exactly the same code and SqlClient flies as compared to the classic methods.
  4. Are you using Sql Server, or any DB that facilitates Stored Procs? If so, I would do the entire update, insert or delete within a stored proc.
  5. Code-behind is the way to go, stay away from <% %> tags as well as Response.Write(), with these you are just interpreting the page. Check out http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/default.aspx
  6. Look into Currency Manager and Data Binding.
  7. That first link is grasping at straws, the article may have been written by a politician :) I can imagine what kind if work this guys puts out :eek:
  8. Advantages? None!
  9. Can you post a bit more code?
  10. My apologies, I don�t know what I was thinking
  11. An option to "Set as startup project" ?
  12. You cannot select more than one startup project in a solution. You need to compile each project in Debug mode in order to be able to step-through the code.
  13. Welcome aboard; don't let these contemptible comments discourage you from benefiting the resources we have to offer on this site.
  14. That's what I used selectedIndexChanged... I had a solution for not triggering it during form load but I can't think of it off-hand, it's been a while.
  15. Yeah they use a structure in the sample, but if you look at the Source Code they don't...http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/winforms/Samples/Data/ComboBoxBinding/ComboBoxBinding.src Anyway here's a shorter version of your code... Dim strSQL As String = "Select ID, vehicle_make from makes order by vehicle_make" Dim Connection As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\carfinder.mdb") Dim DA As New OleDbDataAdapter(strSQL, Connection) Dim DS As New DataSet DA.Fill(DS, "makes") With ComboBox1 .DataSource = DS.Tables(0) 'or .DataSource = DS 'or .DataSource = DS.Tables(0).DefaultView .DisplayMember = "vehicle_make" .ValueMember = "ID" End With
  16. Lots of sample here http://samples.gotdotnet.com/quickstart/
  17. Why is everyone blowing this out of proportion? It is a valid question to which I addressed in my last post... Because if you do have a connection wireless or not being sent to a common server you do need some security.
  18. You can open the reports from VB or C# by making a reference to the MS Access n.n Object Library. Keep in mind that the end users will require Access be installed locally.
  19. I'm not sure if I understand, do you want to cache menu items for each userID?
  20. Are these 150 columns coming from multiple tables?
  21. Yes a scanner that relays its' info back to a server may be more secure.
  22. Why do you need a structure?
  23. Are you transfering back to the same page? If so then don't, if not then SmartNav shouldn't be affecting you in this case.
×
×
  • Create New...