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

    Compressing a set of files

    I have a off the wall request, does anyone know of a method to compress a given set of files on a windows box, without having an app to do so. I know how to make this happen on a Unix box, but not windows. Also I can not install any 3rd party apps on the box. Thanks in advance, Ati2ude
  2. Ati2ude

    Glob with -tail arg question

    I have the following line: set savefile_list [glob -nocomplain -tails -directory $process_dir *.idx] when executed I get: Error: bad option "-tails": must be -directory, -join, -nocomplain, -path, -type s, or -- while executing "glob -nocomplain -tails -directory $process_dir *.idx" Am I...
  3. Ati2ude

    Problems creating a list of directories on windows

    Hi all, I have tried this several ways and can not seem to get what I am looking for. What I want to do is create a list of sub directories under a specified directory. I will then iterate thru each of them, looking for specific files. Here is what I have tried. set processdir [concat...
  4. Ati2ude

    Running a VBScript from the Windows Scheduler?

    Has anyone ever had to run a VBS from the Windows Scheduler? If so can you give some pointers? Thanks in advance, Ati2ude
  5. Ati2ude

    extexpfilter

    Anyone every heard of this command? If so do you have any documentation on it. I came across it in use in our environment and can't seem to find any info on the use of it. Thanks in advance, Ati2ude
  6. Ati2ude

    Can I use an Or in an if Statement?

    I am new to Perl and am trying to modify a script. What I have is an if statement that is checking for a single condition like so: if {$filename ne ".txt"} {$merr=1;$e2=1;} What I would like to do is something like this: if {$filename ne ".txt"} || {$filename ne ".TXT"} {$merr=1;$e2=1;}...
  7. Ati2ude

    Parsing a string based on lengths??

    I would like to parse this string into mulitple strings or a list. set string "MYSTRINGTOPARSE" first = "MY" second = "STRING" third = "TO" fourth = "PARSE" etc... Any pointers would be great, as always thanks in advance. Brian
  8. Ati2ude

    Converting a Date and Time something useable.

    I am dealing with a date in the follwoing format "YYYYMMDDHHmmss". Does anyone know of a way that I can get the CLOCK function to recognize that format and convert the date to seconds? Here is what I have tried. set fmat {%Y%m%d%%H%M%S} set msgTime [clock format $pv1_45 -format $fmat ] set...
  9. Ati2ude

    Cat Command Syntax Issue

    I am trying to create an e-mail with an attachment during a cron job. My only option is sendmail, so that makes it more difficult. Below is the code I am using, the error I am getting is: Error Text: syntax error at line 251 : `<<' unmatched Line 251 is the cat command, I am not sure what I...
  10. Ati2ude

    Using sendmail to send a file

    I am trying to do something with KSH that I am not sure will work. I want to determine if a file is zero byte, if not attach it to an e-mail and send it to myself. I have used the sendmail prog before but not in this depth. Example of what I have done: /usr/sbin/sendmail -f$from -t <...
  11. Ati2ude

    Need help with a simple if then else statement

    The follwoing code: #Check if any files are in the error DB lines=`hcidbdump -e | wc -l`; echo $lines; today=`date +%Y%m%d`; echo $today; if (( $lines != 8 )) then `hcidbdump -e -L >> $today.txt`; fi gives me the follwoing error: db_check.ksh[13]: ^M: not found...
  12. Ati2ude

    New project causing some head scratching!!!

    I have been tasked with converting a FoxPro application to MS Access. I was able to convert the database with ease, however the person who originally buil the app did not use any kind keys or normalization to build it. So that has given me some headaches. I have built several forms and am now...
  13. Ati2ude

    Help with Parsing a string

    I have been tasked with determing if a given string contains a @ character. If so remove the character and concat the remaining values together to form a new string. I am leaning towards something like this. regsub -all "\-" $oldstring "" newstring Is this the best method for handling this...
  14. Ati2ude

    Resize a MDIChild when the parent form size is changed.

    I would like to resize any child form that is open when the parent form is resized. Any ideas on how to accomplish this? Thanks in advance.
  15. Ati2ude

    Adding a component in .net

    I am just begining to take a look at .Net and have decided to convert an exsisting app, (VB6) to .Net. However this app uses an ocx component. I have searched MSDN for how to include this component to my project and can't seem to get pointed in the right direction. Can anyone help?
  16. Ati2ude

    Easy Question

    I am trying to write a TCL proc and pass a list of args to the proc when it is called, I am not doing something correctly. I have attached my code example and the error I recieve. Any ideas? Thanks in advance. How I am calling it: xlt_parse_field &quot;DELIM - MSG 0 STRNUM 0&quot...
  17. Ati2ude

    How to obtain the OS Serial Number.

    I am in the process of completing a control that will need to registred by the user. I have created an algorithim that uses several data elements on the machine to create a unique key for each install. I would like to have Wise obtain some of these data elements so that do not have to search for...
  18. Ati2ude

    MoveFile Function

    Has anyone ever used the MoveFile function to move an entire directory? I can use the function to move a single file at a time, but MSDN states that the function will move an entire directory including children. Any help would be great!! Thanks in advance. Ati2ude
  19. Ati2ude

    Assignment of a task in a public task folder

    I have written an app that will create a task and in a public folder. However now I would like to assign it to a user to work. But just noticed that on a public task list I do not have the option to assign a task. Anyone ran in to this and solved it before. Ati2ude
  20. Ati2ude

    How to remove the Progress Bar from displaying using Install Master

    I do not want any dialogs displaying when the user executes the install. I have removed all of them except the Progress Bar. Any assistance getting rid of this guys would be great. Ati2ude

Part and Inventory Search

Back
Top