Search results for query: *

  1. H

    What does this error mean when I try to add rows to a datagrid?

    instead of system.DBnull, I get system.data.datarow when I highlight it.
  2. H

    What does this error mean when I try to add rows to a datagrid?

    I do. I created five catagories in the Form Load procedure.
  3. H

    What does this error mean when I try to add rows to a datagrid?

    thank you for telling me how to highlight something, though that was not what I was asking. can you show me a sample code? I understand I was pointing to a collection so how do I fix it? The follow do not work even though I have specified the index data.item(0) = strTime data(0) = strTime...
  4. H

    What does this error mean when I try to add rows to a datagrid?

    so all I need to do is: data(2) = strTime (if 2 is the index of "Time"?) Is this correct?
  5. H

    What does this error mean when I try to add rows to a datagrid?

    When I create a new row, set the Column value to something, and debug the application, VB.NET 2005 skips over the line in which the value of a column is set. For example, Dim data As DataRow data = DataT1.NewRow (the following line is what VB skips) data("Time") = strTime So, I created a...
  6. H

    Using VB.NET to enable/disable file sharing

    Hello, In XP, you can enable sharing of files by right clicking, properties, and clicking on the sharing tab. How can you enable/disable file sharing by using VB.NET?
  7. H

    Spanish Text to Speech?

    I know a French and German TTS engines are out there, but are there any for the Spanish language? I'm trying to target all the major languages in my program.
  8. H

    Integrating file extensions into Windows

    I created a file with the extenion of ".asps", for example, file "del.asps". How do I create something so that when I click on "del.asps", my application opens the asps file?
  9. H

    Mask Inputbox Characters?

    haha i misunderstoof you, i didn't realize you were talking about a form. I though you meant creating a custom DLL control copying the functions of an inputbox
  10. H

    Mask Inputbox Characters?

    how would you do that?
  11. H

    Mask Inputbox Characters?

    How do you mask the characters of an inputbox?
  12. H

    Desktop Intergration

    I have a application that appears on the left of the monitor. How do i make it "Always on Top" and automaticlly resizes any other application that has conflicting window boundaries?
  13. H

    Changing folder visibility status

    Thanks for your help!
  14. H

    Changing folder visibility status

    How do you change a folder from being "normal" to "hidden" using vb.net?
  15. H

    Open Folder Prevention

    exactly. Except, I don't want to pay money for it, so im considering creating my own using folderwatch and an encyrption algorithm I have already created. I just need to know how to prevent the folder from being opened.
  16. H

    Open Folder Prevention

    Is there anyway to check if the user is trying to open a folder and prevent the user from opening it? for example, double click C: drive, and trying to enter C:/Downloads except it wont let you open C:/Downloads?
  17. H

    Controlling other Apps

    could you show me some sample code?
  18. H

    Controlling other Apps

    How do you control other applications? for example, clicking a button would type, "http://www.yahoo.com" into firefox?
  19. H

    Text to speech

    thanks for the info
  20. H

    Text to speech

    what are the boundaries of the pitch and speed? volume is between 0 and 100, but speed seems to be infinite?
Back
Top