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 IamaSherpa 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. gregsa

    scheduling xp restarts from standby mode

    I wish to wake my pc up from standby mode at scheduled times in order to carry out certain tasks. I have some scheduling software that allows me to start programs at specific times, but do not know how to wake the pc up. I am guessing that there may be an .exe file somwhere in System32 that my...
  2. gregsa

    Security Problem in Mac MRJ

    Is there any way to grant a Java applet FULL rights in IE 5 on MAC. I have set all the properties in IE to low security and it has unrestricted access to the network .. The applet can use JDBC to talk to Oracle and RMI but the blasted thing cant use the clipboard. I've tried self signing the...
  3. gregsa

    Fixing the size of JScrollPane containing a JList

    Thanks pipk. I've tried that to no avail. It seems to have no effect. To be more specific about the effect I'm after, I want the same effect achievable in html using <select><option><option>...</select>, where the resting state of the box is to show just one item. JComboBox does this when you...
  4. gregsa

    Fixing the size of JScrollPane containing a JList

    I am trying to display just the selected row of a JList dropdown, but cannot seem to fix the size of the JScrollPane within which it is contained. The problem is that no matter what I do, the JScrollPane/JList combination is always larger than one row high. Could anyone explain to me how to...
  5. gregsa

    Replacing &quot;\n&quot; with &quot;&lt;br&gt; ..

    Another way to do this would be to use a combination of StringTokeniser and StringBuffer, setting &quot;/n&quot; as the delimiter of the StringTokeniser, and appending &quot;<br>&quot; to each token when appending to the StringBuffer. Something along the lines of String outStr; String inStr =...
  6. gregsa

    Limiting text in a JTextField

    I wish to restrict the text entered into a JTextField to just digits and limit the string to 4 chars long. I have tried to do this by attaching a DocumentListener to monitor changes and delete unwanted characters, but this throws an error I presume because I am causing an endless loop by...
  7. gregsa

    counting the frequency of a link_id

    Hi, This is probably a very simple problem, but I'm fairly new to SQL. Any help you can provide is greatly appreciated. I have two tables (QUESTION and ANSWER). The ANSWER table is linked to the QUESTION table as QUESTION.id = ANSWER.question_id. What I need to do is return a bunch of fields...

Part and Inventory Search

Back
Top