Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. indigoblue

    Treeview Events

    I've got no problem with relative node properties: even if I use the code recommended, the child node gets selected and then the parent node gets reselected...
  2. indigoblue

    Treeview Events

    I have a treeview which i only want users to select the leaf nodes. The tree consists of a list of headings at the first level, with the leaves on the second level. To automatically prevent the user selecting the nodes at the heading level, I want some code that automatically selects the first...
  3. indigoblue

    Setting the focus to a Listbox item

    Hi there, I've got a listbox which i can delete items from. When I delete an item I select the previous item in the listbox using Forms!MainForm.List1.Selected(itm) = True ... where itm is the index of the previous item. Although the previous item gets selected, the focus doesn't move to...
  4. indigoblue

    system tray menu problem

    Hi, im trying to use a popup menu near to the clock - i've got the following to work: - a) icon displayed in system tray - b) main callback function receiving mouse messages from the icon - c) a menu defined in my resource file however, when i execute the code below, I get what looks like a...
  5. indigoblue

    Multi window apps

    Hi, I'm developing a basic app & I want to be able to click on a button in the main window, that'll launch another window *outside* of the main app window that'll show some stats. I'm having trouble with JFrame/JWindow to do this - any ideas? Paul
  6. indigoblue

    Very basic applet problem...

    I have just programmed an applet from hand code in visual cafe 4. It comprises of about 25 classes. If I build it & execute it in visual cafe if works fine (the point of entry is a class called Portfolio.class). But... if I then try and embed the applet in a web page i get the error...
  7. indigoblue

    radion buttons and forms...

    Hi am trying to code a page where a user selects a radio box and depending on what option is selected, the user is redirected to another page, with certain values that depend on what is selected posted to the next page. The html goes like this: <form name=&quot;form1&quot...
  8. indigoblue

    Hide All Function

    But the lopp variable i isn't referenced anywhere in the loop...
  9. indigoblue

    Hide All Function

    i have a function hideMenu: function hideMenu(menu){ if (document.layers){ hMenu = document.layers[menu]; } else if (document.all){ hMenu = document.all(menu).style; } hMenu.visibility = hidden; } That hides divs. I want to make sure that all the divisions are well hidden when the page...

Part and Inventory Search

Back
Top