Search results for query: *

  • Users: Ennio
  • Order by date
  1. E

    Using TTS and Modem

    I have created a text-to-speech software in VB .NET now I want to add the dial part so I can call someone and give the message I need. Should I use TAPI for that? or something else?
  2. 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.
  3. 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.
  4. 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...
  5. 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.
  6. E

    How can I select a dropdownlist?

    DropDownList.SelectedIndex=x I got it to work, but for some reason if I delete some data from the DB I get an error saying it's out of range....
  7. 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?
  8. E

    ListView Groups doesn't change the name.

    Yeah that helped me a lot.. I had everything right the only problem was when I check for the group name, I didn't use the NEW again, so It was overwriting the last group :)
  9. E

    CPU information

    sorry put the wrong think, before I send it to the user he would need to send me the cpu serial number, and on the setup program that I give to him it would have his serial number so it will only work on that machine. Since we only have a few clients that would be ok... but what you said it's...
  10. E

    CPU information

    I was thinking to add this to my application so that the user doesn't move the application around to another computer, once he register the it on that machine he can not install again on a different machine
  11. 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.
  12. E

    ListView Groups doesn't change the name.

    Now I'm having some problem with the header for some reason when I look in the DB and get the New Group, and send the text to the Header it overwrites the old header. I think it's because I'm setting the same object but with a different header value. Is there a way to create new groups without...
  13. E

    ListView Groups doesn't change the name.

    That worked :) just creating some code now to generate it from the DB and not overwirte the created group.
  14. E

    ListView Groups doesn't change the name.

    I must be doing something wrong and I cannot see I still get the default name here is my code Private Sub frmTrackTable_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Create the Columns name With lsvReport .Columns.Add("Project Name", 150...
  15. E

    ListView Groups doesn't change the name.

    I don't have the .TITLE on the group....
  16. 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"...
  17. E

    Listview Hidden field...

    :) great that worked Thank you
  18. E

    Listview Hidden field...

    ok I think that should do it for me, but when I add the TAG i get this error msg. (Object Reference not set to an instance of an object) Dim lvItem As ListViewItem lvItem = frm.lsvReport.Items.Add(myDataRow.Item("Name")) lvItem.Tag.Equals(myDataRow.Item("Id"))
  19. 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...
  20. E

    Need some help with listView

    Thank You that worked :)
Back
Top