Search results for query: *

  1. L

    Sql Users and Application Users

    Thanks for the reply David. But just a quick question. In your situation, how do you then deal with features within your project. for example, whether a user can see a menu option or button?
  2. L

    Handling datatables and datarows

    Please help, Im stuck and am going crazy with this simple problem. My code runs a function from a class and returns a dataset of records from the sqlserver. All i want to do is work through the dataset and for each record, insert it into a listview. Please can anyone spot the problem with...
  3. L

    Sql Users and Application Users

    Damn, 18 views, and still noone can even be bothered to reply. :(
  4. L

    Sql Users and Application Users

    Hi there, Im writing a large application that will connect to an SQL server. It will run Stored Procedures that sit on the server. My question is about users. When people generally write applications like this. Do they create a generic user to actually login to the sql server, and like...
  5. L

    can some plz help this newbie,,,,,combo boxes in vb.net

    Hi Frank, I think all you really need to do is add an event to the combo box. Then within that event, you insert your code to update the listbox and image. Im not sure which event it would be. probably something like "on change" Hope this helps
  6. L

    Sub Main Problems

    Hi Pianonee, yes thats what i did. I started a new project. Renamed form1 to frmMain. Added a module, and inserted into that a Sub Main() procedure. I changed the start properties of the project to start from sub main. but when I wrote Dim fMain as new frmMain in the Sub Main() procedure, it...
  7. L

    Sub Main Problems

    Hi there, simple problem. I added a module to my simple project. And inserted a public procedure call Main(). But when I type in: Dim fMain as new frmMain it says frmMain is not defined. However its definitely there in the project. Coincidentally, I have another form, frmAbout, and...
  8. L

    Application Design

    Hi there, just a quick question about methodologies and standard practices. If Im starting to write a large application, is it standard practice to have a seperate project linked, which contact all your business logic and data accessing? Or do people just tend to put it all in one project...
Back
Top