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

    Magento Help - Grouping products in cart

    We currently are building a theme for a client who sells student day planners and the concept is “pick a planner, pick a cover, pick binding, pick accessories and inserts, add to cart.” We’re all new to Magento, but not new to programming; with that said how would we go about facilitating this...
  2. chunkII123

    AVG Internet Security SBS 9.0 Task Schedule Issue

    I seem to be having a problem with AVG. I hope this is in the right section (:-/). I am currently running Windows 7 Professional x64, and have AVG ISSBS 9.0 installed as my complete "anti-virus". Here is my problem, I have scans scheduled daily at 7:00am, and they just DO NOT run at their...
  3. chunkII123

    ACS R7.0 Question

    We recently lost power to our phone system during a thunderstorm, and I had to reset/ reconfigure/ reprogram the processor and expansion cards. With that said, I have never serviced our phone system before this, and it was installed three IT personel ago. I had to get manuals and documentation...
  4. chunkII123

    How do you Dynamically number rows?

    Alright, I have been searching around the net for an answer to a question - How does one dynamically number a queries rows, and then select a specific row from that? Heres what I found, and it's not working out for me SELECT a.*, @num := @num + 1 b from test a, (SELECT @num := 0) d; Now I...
  5. chunkII123

    Question regarding subtracting two colums after being "summed"

    Heres what I need to do, I'm trying to find the sum of two different columns. Here is the two differnt columns SELECT SUM(amount) FROM paymentsscheduled WHERE membernumber = '15980'; and SELECT SUM(amount) FROM paymentsreceived WHERE membernumber = '15980'; What I want MySQL to do is sum...
  6. chunkII123

    Question regarding font path in respect of imagettftext()

    Here is my issue, and I have scoured the internet all weekend trying to find the answer to my question - I currently have about 114 websites on a shared hosting account via GoDaddy. They have PHP unlocked for any use - so on and so forth. What I am trying to do is this: Create the images on...
  7. chunkII123

    How to keep MySQL connection alive via JDBC Driver

    I am currently looking for a way to force the connection to our new MySQL server to stay alive. It seems to have a five minute inactivity timeout, and I am looking for a way to force it to eith indefinitly auto-reconnect silently upon disconnection, or to permanently stay alive while it is not...
  8. chunkII123

    Joining three tables and GROUP_CONCAT-ing

    I currently have a 'view' setup so it polls a couple tables for a java desktop program. The problem is, I need to add another table column from another table, and have the values concatenated separated by ', '. heres is what the current view looks like - select cp.membernumber AS...
  9. chunkII123

    Setting a printed area to center on the paper

    Alright, this seems to be an easy one for a programmer with more skill than I. Here is what I have - public void print() { PrintUtilities printUtil = new PrintUtilities(this.getContentPane()); PageFormat myPageFormat = new PageFormat()...
  10. chunkII123

    Focus Traversal Policy Questions.

    I have poured over all the notes pertaining on how to use the focus traversal policy, and I am honestly drawing a blank. I don't understand how it work - I know it's a method, but i'm uncertain as how to implement it into a program that already has very well established nextFocusableComponent()...
  11. chunkII123

    Taking a colums multiple rows and turning it into a single row.

    Well, here it is - I feel that I am proficient in MySQL syntax, but something must be evading my memory, or I'm just simply retarded. I am attempting to take a column, in this case it's called "Hobby:", which produces multiple results, with two other columns with repeats - those being "Name:"...
  12. chunkII123

    Nested try-catch-finally block?

    Alright, I have a action performed on okButton click, essentially I need it to be possibly a nested try-catch block. With that said, heres whats going on - Right now it looks like this try { if (memNumField != null && matchesMemNumField != null) { if...
  13. chunkII123

    Java application not recognizing column name.

    I have a Java application that uses - <code> "SELECT * FROM membersinformation WHERE membernumber = " +memberNumber; </code> Which works fine, but I added a code to add another column which will be called 'Age1', with an automatic calculation of the age via <code>...
  14. chunkII123

    How to force-disable default tab action within jTextArea

    In one of my prexisting forms there is a textarea that I need to set so that I can tab from it to the nextFocusable without holding ctrl. my textarea is called additionalNotesArea; How do I set it up so that it tabs to nextFocusable instead of adding tabs to the text entry. Thanks in advance...
  15. chunkII123

    Help running getting project to function outside of Netbeans

    Hey yall, Well, heres a good one for you, this will probably be simple and someone should kick me, whatever. At my company we have two offices, one is in Grand Rapids, one is in Flint (Michigan); anyhow, both locations now have servers, GR had the server first, and it runs MySQL...
  16. chunkII123

    Problem changing SQL time to Human time in JRE program

    Hey everyone, I am having trouble getting a code written by a previous employee at my company to grab the time off of the MySQL server and change it to human time, it's coming in via 'yyyy-MM-dd'. I am unsure how to use the DateFormat, SimpleDateFormat, or the one our previous programmer...
  17. chunkII123

    Have a new brain-picker of a problem

    As I stated in my last thread I amnota programmer, aspiring programmer, nor do i have the urge or want to be a programmer. I was however thrust into a job that requires me to do minor tweaks and fixing of another idiots programming, that being said I now have a new problem with some coding, in...
  18. chunkII123

    Need help with Run-Time error '2021' Access Database

    I am not a programmer, however I am a IT professional specializing in computer hardware diagnostics, and networking. I recently went to work for a company in Grand Rapids, MI and we seem to have a problem with our time clock portion of the data base, I have included thewhole timeclock database...

Part and Inventory Search

Back
Top