Search results for query: *

  1. M

    Question Web Browser Control - javascript submit

    Answered! Answered my own question: WebBrowser1.DocumentText = _ "<HTML><HEAD><TITLE>Test Form</TITLE></HEAD> <SCRIPT LANGUAGE=""JavaScript""> function fnSubmit() {" & _ " window.document.XMLFORM.submit(); return; }" & _ " </SCRIPT><BODY LANGUAGE=""javascript"" onload=""return...
  2. M

    Question Web Browser Control - javascript submit

    Hi Y'All, I have the following html file on my local computer. I would like to embed all of this into a VB 2008 browser so that when I launch the app, it will automatically submit the form with the xml command rather than having to open the html page Additionally, the url that this goes to...
  3. M

    Loop Problem

    I just tested this in a console and it works just great: Dim A As Integer Dim innerB As Integer For A = 0 To 10 For innerB = 15 To 20 Console.WriteLine(A & " - " & innerB) Next Next I think newguy hit on your solution! if...
  4. M

    Question Dynamically Change Combo Box and Save Changes

    Answer 'either dbl click "My Project" or right click 'project name' and select properties 'click the "settings" tab I named them com0 - com7 'one setting for each combo box entry 'the following code will populate the combo box (as pername of sub routine) Private Sub PopulateComboBox()...
  5. M

    Question Dynamically Change Combo Box and Save Changes

    Hello, the following code will update the combobox list with new entries and even move repeated entries to the top of the list. I want to save the list so that the next time a user opens the program, the previous list appears in the combobox. Not sure how to accomplish that. Thanks in advance...
  6. M

    Question USE WMI in VB 2008 to manage vnc server

    Solved Added Refs to VB project for, system.management - C:\Windows\microsoft.net\framework\v2.0.50727\syst em.management.dll and system.management.instrumentation - C:program files\reference assemblies\microsoft\framework\v3.5\system.managem ent.instrumentation.dll 'Created by Mike Adams July...
  7. M

    Question USE WMI in VB 2008 to manage vnc server

    additional effort / question I tried the following: Added Refs to VB project for, system.management - C:\Windows\microsoft.net\framework\v2.0.50727\system.management.dll and system.management.instrumentation - C:program files\reference...
  8. M

    Question USE WMI in VB 2008 to manage vnc server

    I have written the following script in VBS to check remote machines for VNC service running and to turn it on if it is not (pending user prompt) or to turn it off if it is on (same prompt). I have attempted to convert this to VB 2008. I have modified programs from the Microsoft code samples...
Back
Top