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!

Recent content by Jooky68

  1. Jooky68

    Stubbing out function

    That does work, thank you Salem. That was easy enough haha. Also if anyone was paying attention to my post, the no semi colon issue(issue #2) that I mentioned, is not an issue the semi colon is not needed.
  2. Jooky68

    Stubbing out function

    Hello. I am trying to stub out a command that is used for a Sharc board using visual DSP. Being familiar with these two products is probably not necessary to know the answer to my question (if possible). For memory mapping a section("<some memory segment>") command is used. This command is...
  3. Jooky68

    Issue with precompiled header directive

    I am trying to compile a .cpp file but I am getting the following error: (1782): fatal error C1010: unexpected end of file while looking for precompiled header directive Any ideas why I would be getting this error message? My head file is included and resides in the same directory.
  4. Jooky68

    Easy way to convert image formats?

    I am trying to convert a Bitmap formatted image to Tiff. Does anyone know if there is an easy way of doing this?
  5. Jooky68

    VBA Excel- Getting users Selection

    Sorry was looking for a Selection method within Range. Just came across RangeSelection within the Window class which will do what I need.
  6. Jooky68

    VBA Excel- Getting users Selection

    The problem with the Worksheet_SelectionChange is that I want the user to be able to decide if they want to run the macro or not. The macro is called from a toolbar button, the user highlights some cells and clicks the toolbar button to run the macro on those selected cells. In terms of the...
  7. Jooky68

    VBA Excel- Getting users Selection

    I am trying to write a little macro that can get the range of the cells in which the user has selected. Is there a built in method for this? The ActiveCell won't work because it has to be a selection.
  8. Jooky68

    Date/Time Picker ActiveX-Can't set VALUE property in code

    I have two Date and Time Picker ActiveX controls on a form. When trying to set the current date to them when the form is loaded I get "Property is Read Only". I can't figure out any setting that would cause this. Any ideas?
  9. Jooky68

    wscript.shell- does the run command have a buffer size for the command

    It worked! Why did that work if you do not mind me asking? I have heard of it and know it has to do with the command interpreter, but would never of thought to use it for this issue.
  10. Jooky68

    wscript.shell- does the run command have a buffer size for the command

    CmdString = "for %h in (PJLAP PJlap2) do xcopy ""\\server1\Program Files\test dir\bin\cmn\file1.txt"" " _ + " ""\\%h\Program Files\test dir\bin\cmn\file1.txt"" /r /y" WshShell.Run CmdString,0,true If I put this command directly in the command prompt exactly as show above it works...
  11. Jooky68

    wscript.shell- does the run command have a buffer size for the command

    Is there a buffer size for the command paramter of the run command. I am trying to run a command that works on one computer, but will not work on another. The command is similiar to the following. cmd="for %h in (compname) do xcopy ""\\somepath"" ""\\somepath"" /r /y" Sorry I do not have the...
  12. Jooky68

    Way to tell if called Script produced an error

    I am writing a script that calls another script. The script works fine but if the called script does not work correctly it will throw an error and than the calling script will continue to run. I wan the calling script to somehow throw an error if one of the called scripts produces and error I...
  13. Jooky68

    How to change environment variables

    I am trying to change some environment variables with vbscript. I know I can view the values of environment variables using wscript.shell, can I change them with this object as well??
  14. Jooky68

    Running SQL script files with Java

    Yup, even took out all but one statement, which was one one line, which worked. Than added one more command and it wouldn't work. Still same thing. I know it is not a good method, but I just ended up looking through the file and after each readline executeUpdate on the line, which works...
  15. Jooky68

    Running SQL script files with Java

    I am using MySQL, so I cannot create stored procedures(Version 5.0 has them, but that is a current Alpha release). I wish it did because that would make things much easier. I tried the above executeBatch() method, but It give me back an error saying that I have a syntax error with my command(SQL...

Part and Inventory Search

Back
Top