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: qjade
  • Order by date
  1. qjade

    Batch file (*.bat) syntax help - find string in file & grab next line

    Thanks for all the reply. First, unfortunately part of the requirements delivered to me was to have this solution in a *.bat file. Secondly, I am unfamiliar with *.vbs so would not know how to "compile" or run the provided code above from pwise. Is there anything special that must be done to...
  2. qjade

    Batch file (*.bat) syntax help - find string in file & grab next line

    Hello friends, I apologize if posting this in the wrong forum. Saw a similar post here so thought I would start here. Please point to correct forum is I am wrong. Problem: I have an *.xml file that I want to look through one line at a time via a *.bat file. I need to find a specific node...
  3. qjade

    Write query result to Excel file in different tab?

    Thank you for your reply Mutley. I have attempted at creating two separate views and using DTS to split the results to two separate sheets within a spreadsheet. My next question is how do I pull the column name with the query/view to the sheets as well? Is there a way to utilize the DTS...
  4. qjade

    Write query result to Excel file in different tab?

    Hello friends, I am attempting to write the result of two separate subquerries into two separate tabs of a single excel workbook. I only know of a way to write out via bcp and xp_cmdshell to a tab delimited file. i.e. exec master.dbo.xp_cmdshell 'bcp "select top 3* from tblSomeTable"...
  5. qjade

    vb.NET Timer not firing Elapsed time event

    Thank you for all of your input. In trying to avoid the usage of Form I decided to go ahead and utilized System.Threading.Thread.Sleep(15000) instead. I am sure there are other more "programmitically-correct" method of getting what I need done but due to time constrain I went with that route...
  6. qjade

    vb.NET Timer not firing Elapsed time event

    Rick, Yes Main() is set as my start up method. I have also tried two separate methods to troubleshoot your idea of Main() ending too soon. 1) Wrap an infinite while loop around the code in Main() 2) Keep the timer object active with "GC.KeepAlive(Qtimer)". However, they both again did...
  7. qjade

    vb.NET Timer not firing Elapsed time event

    Yeah, my commenting is a little off from the numerous mods I have been trying. Please ignore that comment and proceed with your debugging help. Thanks.
  8. qjade

    vb.NET Timer not firing Elapsed time event

    Thanks for the advice sin1965. However, I have gone that route but still no luck. Here is my modifications: '///////////////////////////////// Imports System Imports System.Timers Public Class Qtest2 Public Shared WithEvents Qtimer As New System.Timers.Timer Public Shared Sub...
  9. qjade

    vb.NET Timer not firing Elapsed time event

    Hello friends, I have read numerous threads in this site as well as Google but still cannot seem to get a simple timer to fuction properly. All I want to do is create a timer that fires every 15 seconds and execute the code in my Elapsed Time Event. My simplified example is as follow...
  10. qjade

    Symbol LS2208 - Emulate "ENTER" keystroke in Excel

    Hello friends, I am trying to utilize the Symbol LS2208 to input data into an Excel spreadsheet. I have configured it to append a "TAB" suffix after a barcode scan to jump to the next column. However, when all data for that record is finish, I need to be able to scan a barcode that will...
  11. qjade

    How to copy pdf file from webpage locally

    Thank you for responding raklet! Your code seems to work perfectly (after I changed the start = "http://cc2e.com"). However, it does not seem to work for my case. Does it have anything to do with the fact that my *.pdf file is located on our intranet and not internet? I tried hardcode in...
  12. qjade

    How to copy pdf file from webpage locally

    Hello friends, I am trying to copy a webpage (which is just a link to a pdf file) on our intranet. I need to copy it locally so that I can schedule a task to email it daily to a specific recipient daily. I have done a similar job in perl where I crawl a page and save its content - but that...
  13. qjade

    Please help - Flat text file pattern matching dilema

    Works perfectly! Thank you KevinADC and brigmar. Very much appreciated.
  14. qjade

    Please help - Flat text file pattern matching dilema

    Thank you for responding Brigmar. One additional silly question though - how do I change your suggestion slightly to fit into my program? I have the line of text already save in $text variable - where do I go from there? Instead of assuming that all lines of text in the file is in the same...
  15. qjade

    Please help - Flat text file pattern matching dilema

    I can guarantee that the Time element will alway end with AM or PM. However, the Room element may or may not be present. Hope that helps you help me. Thanks for replying 1DMF. Much appreciated.
  16. qjade

    Please help - Flat text file pattern matching dilema

    Unfortunately, as with many things in the business world, I have no control over the file. It is what it is and I have to live with it.
  17. qjade

    Please help - Flat text file pattern matching dilema

    Hello friends, I recently ran into a problem with my perl prog that reads from a flat text file for patterns and was hoping that one of the many Perl guru here can give me a hand or drop a few lines of suggestions. My problem is as follow: My prog use to read one line of text at a time...
  18. qjade

    What to do with CRT dependency to run *.exe in another machine

    Hello friends, I am trying to distribute an executable to another PC but running into an error something along the line of Settings are incorrect and that reinstallation may fix the problem. Both machines have identical OS (XP with SP2). The manifest for my compile application is as follow...
  19. qjade

    How to create a "Release" for an installation package in VC++ Express

    It says something along the line of "The application settings are not correct. Reinstalling the program may fix this problem.
  20. qjade

    How to create a "Release" for an installation package in VC++ Express

    Thanks for your respond cpjust! I was able to create a "Release" executable. However, I still can not move that *.exe file to another PC to run (both have Win XP & SP2). That is a huge problem for me right now as I need to distribute this to many other PC's. Is there anything else special...

Part and Inventory Search

Back
Top