Search results for query: *

  • Users: dalem
  • Order by date
  1. D

    parameters.add is obsolete in vb.net 2.0?

    hope this is the right place to post this question i recently converted a 2003 vb.net project to 2005--cleaned up the errors and it runs ok but it gives me warnings about using public function "parameters.add() for inserting records into sql table--says that is now obsolete and has been...
  2. D

    syntax for Dataview vs. Dataset

    yes, you might be on to something--that could be the difference--maybe that's why i haven't detected the difference until now. but i've searched various books and documents and can't find any reference to it. thanks for the suggestion. dale
  3. D

    syntax for Dataview vs. Dataset

    a little more info thanks for replying typically, i use the dataview as the datasource for a control that the user has made a selection from (i.e. drop down list or list box) and i use the position or index of the selection from the control to then go to the dataview and retrieve other values...
  4. D

    syntax for Dataview vs. Dataset

    I have recently discovered a problem with some code I have been using. In the past, when I wanted to get a value of some item of some row within a dataview, I used the following syntax: CurrentDataview.Table.Rows(RowNumberOfInterest).Item("PreviewCaption") with the variable RowNumberOfInterest...
  5. D

    problem with intellisense

    not sure why, but the feature is now working as it should. hopefully, it is back for good. dale
  6. D

    problem with intellisense

    in my other projects, when i type in some syntax violation (i.e. "kkkkkk"), then after i leave that line, the IDE reformats the line and then puts the squiggly line under the violation, indicating a syntax error. in a new project i created in a new solution, this does not immediately happen...
  7. D

    laying one "transparent" form on another

    thanks! thanks for all of your help. i will start this project in a few weeks--with your help and a little more reading i've done, i'm sure i'm on my way. if i have any problems, i'll stop back here.:) thanks! dale
  8. D

    laying one "transparent" form on another

    thanks--that helps a lot--i will try this in the next couple of days. i believe you've given me enough to get started--last question--you say i don't really have to draw the rectangle but if i want the user to actually see these hit areas as a guide, then wouldn't i want to draw these target...
  9. D

    laying one "transparent" form on another

    thanks for the reply. i understand what you're saying but due to my inexperience with working with graphics and images, i have another question. would i insert these rectangles or target areas in a graphic editor outside of vb.net and note what the coordinates are or do it within the vs...
  10. D

    laying one "transparent" form on another

    not sure if this is correct forum but here goes. i have an application where users need to fill out injury reports for clients and identify the location of the injury. I thought one way of doing this would be to have an image of human body and lay on top of that a mostly transparent image that...
  11. D

    can't find tooltip in debugger mode for vs2003

    i have vs2003 installed on two home machines and when i go into debugger mode, if i move the cursor over code, i will often get a tooltip that gives either the variable value, hints at the syntax to use, etc.. however, vs2003 was just installed on my work machine and i can't get the...
  12. D

    how to create a blank solution

    thanks! dale
  13. D

    how to create a blank solution

    thanks--that's what i've been doing. dale
  14. D

    how to create a blank solution

    i am still using vs2003 but part time trying out vs2005. in 2003, to create a blank solution, you could click on File-New and get 3 choices (Project-File-Solution), which would permit you to create a blank solution, with no project. i can't seem to figure out how to do this in 2005--closest i...
  15. D

    2 of the ready-to-launch package are damaged

    i attended the november launch in chicago and received a 4 disk set of vs2005 and sql2005 along with msdn library. since i'm still using vs2003, i just got around to installing the new software to test it out. the vs2005 installed ok from its 2 disks but both the sql and library cannot be read...
  16. D

    two-way binding permitted?

    thanks for the reply. you're correct, i should not be calling acceptchanges and i only did this to test out the dataset after i was able to programmaticallly post changes to dataset. so, this was not the problem--i have not yet discovered what problem is but have found a temporary workaround...
  17. D

    two-way binding permitted?

    i've only been working with vb.net for about 3 months and have a question about data binding of controls. i'm able to download data from sql tables and bind to datagrid and navigate through datasets and dataviews. i'm able to update the original sql table with any changes (inserts, deletes, and...
Back
Top