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 TouchToneTommy 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: *

  • Users: rekenaar
  • Content: Threads
  • Order by date
  1. rekenaar

    Tasklist command only PID needed and piping

    Hello. I've got 2 questions. I am running the Windows tasklist command like so: tasklist /fi "STATUS eq running" /fi "Imagename eq notepad.exe" /nh This returns all the processes of notepad.exe running. But it gives all the detail (name/PID/memory usage/etc.) My first question is it...
  2. rekenaar

    Integration with picture scanner

    Hello I just want to know if anyone here has had any experience regarding interfacing a Java application with a scanner? Basically what I want to do is have a user click a button on a Java app that will let it automatically scan a document that is in the scanner. Then it must take the picture...
  3. rekenaar

    XPath Queries in C#

    I am having a problem with my xpath queries in C#. I have the following xml file: <?xml version="1.0" encoding="utf-8" ?> <config> <data_module> <table_name>users</table_name> <fields> <field> <name>name</name> <type>string</type> </field> </fields>...
  4. rekenaar

    dynamic building of page using XML best practices

    Hello. I am a Java programmer just getting into ASP.NET with C#. I have started writing an xml schema that will be used to the pages so that it can be created dynamically from the xml. I just need some input from people with experience in this type of thing to make sure I am on the right path...
  5. rekenaar

    Query with joins

    Hello Let me explain the problem I am having: I have two tables, data_t and a_data_t a_data_t is the archive table of data_t The two tables are exactly the same. In the table values are stored: Value (A numeric value) Code (A text code to identify a report with data) Line (The line number)...
  6. rekenaar

    changing font size in jlabel via html

    Hi I need to change the size of fonts at different places in a jlabel, thus I want to use html in the text of the jlabelto change it. Is this possible? Because normal <font>-tag doesn't seem to work. I'm using 1.4.2 Thank you for your time.
  7. rekenaar

    JTree

    Hello I am trying to use JTree to represent a file structure. It reads the files in a folder and put it in the tree. The Problem is if a folder is empty is not displayed correctly in the JTree (It gets displayed as a leaf). Is there some way to force a node not be displayed as a leaf? Here is...
  8. rekenaar

    Folder Explorer GUI

    Hello. Do anyone know if there is a way to create a folder explorer? What I mean by that: The user should see a list of directories and then click on a specific directory and then the files in the directory will be shown beneath it. If they double click a file it should be saved or opened. Or...
  9. rekenaar

    Performing Action after Login

    Hello. I want to perform a specific action after a user logs in (I want to check if the user has logged in before, if not he needs to be directed to a page where he needs to change his password). I am using JDBC Realm with Tomcat and FORM login. It seems you can't make an .do action the...
  10. rekenaar

    Storing logged in user as session variable

    I am using form-based security with JDBCRealm in struts for my user authentication. Is there any way to change j_security_check or something so that the username is saved as a session variable? Thx.
  11. rekenaar

    Detecting first Login

    Hello I am using Tomcat authentication for my webpage (JDBC Realm). My question is there any way to detect if it is the first time a user logged in> I ask this because we want the users to change their passwords the first time they log in. Help would be appreciated. Thanks.
  12. rekenaar

    Resizing JButton not working

    Hello I want to set the size of a JButton to be the same as another JButton. Both these buttons are on the same JToolBar. I use the following: private JToolBar createToolBar() { JToolBar m_toolbar = new JToolBar(); JButton rButton = new JButton(refreshAct); JButton pButton = new...
  13. rekenaar

    Image not showing in IE

    Hello. I have a small problem. In the code below the image in the logo frame is showed perfectly in firefox, but the image isn't shown in IE. Any help would be appreciated. <?php session_start(); $_SESSION["bizunit"] = "Main Office"; // Default selected Business Unit ?> <!DOCTYPE HTML...
  14. rekenaar

    using php & mysql - legal ramifications

    If I develop something for a client using PHP and MySQL, do I need to buy any licences? Thanks in advance.
  15. rekenaar

    disclaimer grief

    Hi I used vbscript to add disclaimers to all emails as in the KB article and it works fine but only for the people using POP3 accounts and using SMTP to send. The disclaimer doesn't get added for people using Exchange mailbox. I was under the impression SMTP is used for all outgoing mail (to...
  16. rekenaar

    posting values from multiple forms

    Hello I have one form that is dynamically created from a mysql database. echo ("<form name=selectform method=\"POST\">"); while ($myrow = mysql_fetch_array($result)) { echo ("<TR>"); echo ("<TD>"); echo ("<label><input type=\"radio\" name=\"details\" value=\"{$myrow["ID"]}\">")...
  17. rekenaar

    changing php session variables via javascript

    Hello Please bear with me, I am a php & javascript newbie still trying to learn. Currently I have a page that dynamically create radiobuttons from a table in a MySQL database. These radiobuttons are a list of business units for a company. $result = mysql_query("SELECT Name FROM...
  18. rekenaar

    Shared Fax missing pages

    Hello We are using Shared Fax on our Windows 2003 Server. It was working fine for the last couple of months. Recently people that are receiving the faxes say that they only receive the coverpage of the fax and not the whole fax. This happens without pattern and to anyone. On our side things...
  19. rekenaar

    Exchange services doesn't automatically start at startup

    When our servers get rebooted (even though is very seldom). The Exchange services doesn't automatically start. There is nothing in the event log to give us any clues. It just says "starting" in the Services-console. When you manually start them there is no problem. We did use ESEUTIL to check...
  20. rekenaar

    Fax through multifunctional printers

    Hello We are running 3 x Windows server 2003. We recently installed a few multifunctional printers (fax/copy/scan/print) on the network. These printers are shared. It is possible to fax through these printers from the pcs (select print and change a property to fax). I want to set up with...

Part and Inventory Search

Back
Top