Search:

Type: Posts; User: gmatteson

Page 1 of 8 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    723

    Change Windows Administrator Password

    I am interested in changing the local administrator password on a windows machine. The VBScript version that I have is below, but am interested in the VB.NET version of the below code. Thanks.

    Set...
  2. Replies
    1
    Views
    637

    answer

    have you found a solution for this? thanks
  3. ASP or ASP.net Create Word Document Labels

    How can I create a word document with mail labels using either ASP or ASP.NET, preferably ASP? Thank you.
  4. updating a record using a dataset, multiple forms

    i would like to update a record using a dataset on two forms.

    form1 has a list of all the values that are return. the user double clicks on a record and form2 pops up with a textbox so that the...
  5. Replies
    6
    Views
    910

    thans

    thank you.
  6. Replies
    6
    Views
    910

    rather than if then

    if i have a form with 20 text boxes on it, i would rather not do the if then statements, i'm trying to make a nice little function that would return either true or false if it has text.
  7. Replies
    6
    Views
    910

    Is textbox empty?

    how can i create a function/procedure/control array that will tell which textbox on my form doesn't have any text in it and set the focus to that one? thank you.
  8. thanks

    thanks, forgot about that :)
  9. Adding new records to more than one column

    Dim oDataAdapter As New MySqlDataAdapter
    Dim oRow As DataRow
    oRow = oDataset.Tables(strSelectedValue).NewRow()
    oRow.Item(0) = txtName.Text
    ...
  10. Replies
    0
    Views
    1,109

    VB.NET Read properties of a video file

    This is for all the experts out there because I really have no idea where to begin... I need to read the properties of a video file, avi, mpeg, etc.

    The number of frames in the file
    The length...
  11. Replies
    4
    Views
    657

    which is faster for adding records?

    using a datarow object or regular sql syntax such as..

    Dim oCmdInsertSchool As New MySqlCommand("insert into school (name , db, host) values('" & txtSchool.Text & "', '" & txtDB.Text & "', '" &...
  12. Replies
    2
    Views
    3,492

    thanks.

    works great.
  13. Replies
    2
    Views
    3,492

    dataset, does table exist?

    How can i tell if a certain table is already in the dataset?
  14. app

    if you are interested, i can email you the file. although i can't remember if has all the features i wanted...
  15. Device Manager - Uninstall/Remove Devices

    How can I access the list of devices displayed in windows xp or 2000 device manager? (Computer Mananger > Device Manager) I would like to uninstall everything under System Devices. How can I do...
  16. Replies
    11
    Views
    863

    listview

    i believe the problem occurs when i have 2 columns in the listview. one column moves up while the other disappears...
  17. Replies
    11
    Views
    863

    Listview, move item up in list

    I have a listview with 5 items in it..

    item1
    item2
    item3
    item4
    item5

    i have two buttons, move up and move down, how do i make it so that the user can move item4 up one position which would...
  18. Replies
    6
    Views
    861

    validation

    do you know the ascii range for those characters or where to find them? thank you.
  19. Replies
    6
    Views
    861

    Textbox Validation....

    How can I validate the text that the user types in on keyup to detect wither or not the data is either a-z, A-Z, 0-9, or with these two characters -.

    thank you.
  20. Thread: Menu style

    by gmatteson
    Replies
    4
    Views
    761

    pointers?

    can you give me any more info, links or other tutorials? thanks. i've never heard of this before.
  21. Thread: Menu style

    by gmatteson
    Replies
    4
    Views
    761

    Menu style

    Is there a way to get the menu style to look like this in Vb.net 2003? There are 2 jpg's zipped and attached. I pulled this from the XP performance MMC snapin and liked the way it looked, the corners...
  22. Replies
    0
    Views
    491

    creating a windows user

    how do i create a windows user account and add it to the administrators group? thank you, and if possible add it to the domain admins group as well? i think it might have something to do with...
  23. link

    https://exe.inquery.biz/oxp/ this is the only link i can supply other than ftp. port 80 isn't allowed by my isp.
  24. profile

    documents and settings\username\application data\outlook if i remember correctly
  25. new link sorry about that

    https://exe.inquery.biz/oxp/ here's the new link.
  26. Replies
    4
    Views
    708

    yes

    i've select an item, then clicked move up...i noticed that the lvwitem is being refered to the data in column2...
  27. Replies
    4
    Views
    708

    on click..

    when i click the move up button, nothing seems to happen to the items in the listview....it just blinks then thats it. sorry for the late reply, i've been gone for a day. it's also a two column...
  28. Replies
    2
    Views
    619

    thanks

    will do.
  29. Replies
    2
    Views
    619

    Escape and Enter Keys on Form

    If a user hits escape I would like the form to exit, if they hit enter I would like it to active the OK button? does anyone know how to do this besides using keyup on the form?
  30. Replies
    4
    Views
    708

    move item in listview

    is there a way to move an item "up" in a listview?

    if the item is number 4 on the list, on button click, can i move that item up to number 3 on the list?
  31. Replies
    0
    Views
    593

    listview databinding....

    can someone tell me how to bind two columns in a list view to 2 columns in a dataset? i've tried using the binding method that i use for textboxes etc but no luck...thanks for any tips
  32. Replies
    1
    Views
    890

    works...

    i just got it to work, but if anyone has any ideas i would be interested in seeing how you do it, thanks.

    all i did was when they go to save to the file was

    dim oRow as datarow

    for each oRow...
  33. Replies
    1
    Views
    890

    encrypt field in dataset......

    Hello,

    I am using a dataset to read an xml file, there is a password attribute in the xml field which i want to encrypt..


    oDataset.ReadXml(Application.StartupPath &...
  34. Replies
    2
    Views
    530

    thanks figured it out

    if anyone is interested on how to bind the contols...


    oDataset.ReadXml(Application.StartupPath & "\connections.xml")
    cboDescription.DisplayMember =...
  35. Replies
    2
    Views
    530

    dataset and xml....possible?

    rather than loading my xml file and it's different attributes into a multidemensional array, is it possible to load the xml file into a dataset? i noticed that is has a "getxml" property in the...
  36. Replies
    2
    Views
    753

    thanks

    thanks, ill have to look into it some more.
  37. Replies
    2
    Views
    753

    form.showdialog vs form.show

    what is the differences and benifits? other than it's a dialog and beeps if you try to do something else off the form...
  38. Replies
    2
    Views
    2,086

    thanks

    maybe i should have explained it better...

    i have a file called.... mysql.sql and that is where my sql command is i.e. "CREATE DATABASE TEST1" etc...

    i want to be able to load the file into my...
  39. Replies
    2
    Views
    2,086

    vb.net mysql load a sql file...

    has anyone used the mysqldirect .net dataprovider from www.crlab.com? i have a sqlscript file that creates about 100 tables.... now i looked at the mysqlscript component of it but it doesn't give any...
  40. Replies
    8
    Views
    5,076

    asci range

    do you know what that asci range will be?
Results 1 to 40 of 294
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width