Search results for query: *

  1. S

    Internal modem problems

    Hi I have been writing an application that will dial out to a remote device using a modem attached to the PC. I have had no problems using an external modem and using the serial port control to handle the data transfers. The problem I'm having is that i cannot open the com port associated...
  2. S

    html help in VB.NET

    thanks JohnH, I'll check that out as well
  3. S

    html help in VB.NET

    Hi I have developed an application and would like to integrate some help stuff into it. How can I create a .chm file using vs2005? The help tells me to use an activeX control, but what do you add it to? Can someone point me to a link which shows how to create a .chm file? thanks I think I've...
  4. S

    ContextMenu Help!

    Thanks, thats awsome!! I didn't realize that you could drill down like that through the object!. i am using VB2005. Whats the difference using a ContextMenuStrip as opposed to a ContextMenu?
  5. S

    ContextMenu Help!

    thanks jmcilhinney i nutted it out using: Dim obj As MenuItem 'this will get the AWS selected For Each obj In mobContextMenu.MenuItems(0).MenuItems(0).MenuItems If Object.ReferenceEquals(sender, obj) = True Then strAws = obj.Text Exit For End If Next 'this will get the state selected For...
  6. S

    ContextMenu Help!

    I'm new to VB.NET and am creating a little program that will run in the sys tray with a context menu. the menu has sub menus and i want to call the same sub when each of them is clicked. Here's the menu setup: 'this will add the root items to the menu mobContextMenu.MenuItems.Add(New...
Back
Top