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: justride
  • Content: Threads
  • Order by date
  1. justride

    mysqli_stmt_bind_result unexpected behavior on MAC versus PC

    Using XAMMP or WAMMP on my MAC, I am seeing some odd behavior when attempting to retrieve some values from a BIGINT(10) MYSQL field, and I can only assume its the MYSQL bind or PHP echo, the same code works fine on a PC. $stmt = mysqli_prepare($this->connection, "SELECT USER_ID, USER_NAME...
  2. justride

    Retrieving data from 2D Array's off of Form Submits

    The following code was working, not sure the version of PHP that I was using, but I know it worked on 4. Rrecently my host upgraded to PHP Version 5.2.13, and all of the code is broken. I have an HTML Form Submit. My HTML Form POST the following variable "requirements" as 2D array data fine...
  3. justride

    regular expression

    Does anybody know the pattern to escape special characters if they arent already escaped? for example, to escape TEST1&TEST2 but not TEST1 & TEST2 Thanks
  4. justride

    regular expression help

    Hello all, I am attempting to search and replace some xml text using php's regular expression library. I want to find all occurences of >some alpha text< withing an xml string and replace with ><font...>some alpha text< here is what I have so far pattern = ">[a-zA-Z0-9]*<"; $replace =...
  5. justride

    library to format xml for html view?

    Anybody know if there is an open source library to take an xml string and render it as html with tabs, color coding etc... thanks
  6. justride

    IE not updating with my ajax polling implementation

    Hello, I am new to the ajax methodology so please bear with me. I have implemented a javascript poll, every second, to my java servlet for message board data. Upon return, I display this data in some div on the jsp page. I noticed in Firefox this works, but in IE, unless I change my "check for...
  7. justride

    pass 2d array to a function from html

    Hello, I have mutliple HTML <select name="requirements[0][]" multiple size=10> select boxes on my page that get used by PHP. [0][0] - [n]n] my question is, how can I send this array to a javacript function to verify a value exists at [0][0] in such a way as i do with a text field...
  8. justride

    can i disable the cd rom eject buttom after windows boots?

    Is there a setting to disable the eject button on a cdrom once the operating system loads?
  9. justride

    create batch file to launch executable

    how can i create a batch file to launch an executable with parameter arguments... @echo on "c:\crap.exe -Darg=crap" pause the -Darg=crap is not being processed, but the dos window doesnt not display any error, it just executes crap.exe alone. thanks
  10. justride

    Traversing a directory

    Does anybody know how to traverse a specified folder for all subfolders and files, I am tryying to create a config file based on all files located within a specified folder. Thanks
  11. justride

    how can i remove newline characters and tabs

    I am usign jdk 1.5 I hear removAll shoudld do the trick. I have a string buffer of xml buf.append("NAME |\n"); buf.append("ID |\n"); buf.append("<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"); buf.append("<xml>\n"); buf.append("</xml>\n"); if i do...
  12. justride

    best way to decouple gui from logic

    I am making a little simulator for some minor testing, just a little test thing for me that implements swing to run this little GUI. Right now I have my GUI and business logic tied together. I know that is not ideal so I am wondering how to efficiently decouple them. I was doing this… 1...
  13. justride

    AWT-EventQueue-0&quot; java.lang.NullPointerException

    Any idea why _mgr is null when I attempt to call openConnection()? It gets instantialed in the GUI constructor? public class UTFSimulatorGUI extends JFrame implements ActionListener { UTFConnectionManager _mgr = null; public UTFSimulatorGUI() { UTFConnectionManager...
  14. justride

    any way to hide the mouse pointer

    any way to hide the mouse pointer until somebody mves the mouse?
  15. justride

    automatically kill explorer.exe

    Does anybody know how to automatically kill explorer.exe from say a batch file? If I put "taskkill /im explorer.exe" in a batch file and run it, Windows ask me if I want to shutdown. I i manually kill explorer.exe from the process list, then the taskbar dissapears. I need to automate that. Any...
  16. justride

    Can I completley Hide the taskbar?

    If I select AutoHide Taskbar, I still see a vertical/horizontal line, approx 2 or 3 pixels wide. Any idea how to completely hide this?
  17. justride

    how to pass parameters from .bat to .sh

    How would I pass some parameters from inside .bat file to a .sh file. If I do test.sh %1 %2 from inside my .bat file, I dont know how to retrieve the parameters from within the .sh Thanks
  18. justride

    How to close program through runtimeexec

    Hello, Can I close an executable after I launch it via the runtimexec() cmd? I am a little confused on the shitdown hooks. Thanks
  19. justride

    Can XP automatically end all open programs that arent responding?

    When I press the power button on my PC, I would like XP to close all apps and automatically powerdown. Instead The user must select "End Now" to all programs that are non-responsive. This is for a KIOSK. Any idea how to do this?
  20. justride

    How to disable messages when encountering a problem and need to restar

    Is there a way to disable messages that appear when windows xp encounters a problem and needs to restart a program? This is for a kiosk and its annoying to see the message, I would like to disable that message so the executable that had the error will restart automatically. thanks

Part and Inventory Search

Back
Top