Search results for query: *

  • Users: Ennio
  • Content: Threads
  • Order by date
  1. E

    Using TTS and Modem

    I have a question, I created a simple program that reads back whatever I type in a text box, and I would like to know what do I need to use to dial out from a modem and play the message I want when the user answer the phone. Any hepl it would be great. Thank you.
  2. E

    Blocking an URL

    Where can I find some information on how to interact my software with the browser. So when the user try to go to a certain website I can block or allow the user to view the website.
  3. E

    get the url from firefox

    I would like to know how can I get the url from the browser, in example FireFox or Internet explorer. I will have my windows form, that will be checking either IE or FF for the url and save it on my application. I found a way to do that on IE, but I cannot find a any information about FF or...
  4. E

    Minimizing a form

    Why when I make ShowInTaskBar = False and I minimize the form it will display only the title bar on top of the start button. How can I make that go away, since I add a notify icon.
  5. E

    How can I select a dropdownlist?

    I need to select a drop down list with some data from the DB, how can I do that?
  6. E

    CPU information

    Is it possible to get the CPU serial number? Does intel and AMD have it? I know that IBM computers you can get the cpu serial number, and I would like to know if it's possible to that with PC's in general.
  7. E

    ListView Groups doesn't change the name.

    I want to add groups to my listview but for some reason when I create the ListVeiw group it doesn't change the name, it always display DEFAULT as the name of the group. 'Create groups Dim lsvGroup AsNew ListViewGroup("Project Name", HorizontalAlignment.Left) lsvGroup.Name = "PROJNAME"...
  8. E

    Listview Hidden field...

    Is it possible to Hide a field on the listview? I need when the user right click on the listview, and click delete to get the index (That I can do) and delete from the listview, but since the index on the listview is not the same on my DB, I need somehow to get the USERID (that I don't display...
  9. E

    Need some help with listView

    I have a listview with this columns 'Create the Columns name lsvReport.Columns.Add("Project Name", 150, HorizontalAlignment.Center) lsvReport.Columns.Add("Time In", 100, HorizontalAlignment.Left) lsvReport.Columns.Add("Time Out", 100, HorizontalAlignment.Left) lsvReport.Columns.Add("Total...
  10. E

    Need some help with DB location!!!

    Where should I put my ACCESS DB file? Should it be on the BIN/RELEASE folder or BIN/DEBUG folder?
  11. E

    Get NULL valeu from DB

    I need to check to see if a field is NULL in the DB. I'm using MS Access as the DB. can I just do a select * from tbl_Test where Test = NULL
Back
Top