Search results for query: *

  • Users: howester77
  • Content: Threads
  • Order by date
  1. 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...
  2. 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?
  3. 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.
  4. 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?
  5. H

    Mask Inputbox Characters?

    How do you mask the characters of an inputbox?
  6. 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?
  7. H

    Changing folder visibility status

    How do you change a folder from being "normal" to "hidden" using vb.net?
  8. 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?
  9. H

    Controlling other Apps

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

    Text to speech

    I am creating a text to speech program using Speechlib, except, I want the program to read the text in a different language, say french. How do I change the Speechlib to french?
  11. H

    Sapi Vb.net?

    Are there any tutorials on SAPI 5.1 SDK for vb.net?When i try to create a voice program based on the vb 6.0 code, it doesn't work.
  12. H

    How to save a listview as a .txt file?

    I have a listview control, how do you save the contents of a listview into a .txt file?
  13. H

    Voice Recognition

    I'm trying to create a voice recognition program. For example, you say, "Notepad" and it opens Notepad. There are a lot of tutorials for VB 6, but is there any for VB.NET?
  14. H

    save listview

    how do i save the contents of a listview control to a .txt file?
  15. H

    label shape

    i dont like the rectangle/square shape of labels. how can i can it?
  16. H

    subitem declaration

    In my listview, I have 9 coloums and 9 rows, for a total of 81 (9x9) subitems. Is there any easier way to declare the subitems instead of doing it like this: 'Create SubItem 1 Dim itms1 As New Windows.Forms.ListViewItem.ListViewSubItem _ (itmp, "SubItem 1")...
Back
Top