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

    Files with spaces

    Is there any ways to prevent files with spaces when it is filtering files? Thank you in advance
  2. bebig

    Find String

    Hi, I am searching specific string. String looks like ------ date -s "03/01/2005 12:13:03"Tue Mar 1 12:13:03 PST 2005bash# ------ To get string, FTPUpload.Text1.SelText = Chr$(CH) To get string, it takes one by one on FTPUpload.Text1.Text. For example, d a t e -s ....... b a s h # So...
  3. bebig

    Date and Time Validation

    Hi, I am trying to write Date and Time Validation This is Date and Time format-based local computer. Text2.Text = Format(Now, "mm/dd/yyyy hh:mm:ss") if I want to type date and time manually on Text2.Text. How to validate Date and Time? Thank you in advance.
  4. bebig

    CommonDialog

    hi, I have a question about commonDialog when I select one file, CommonDialog1.FileName shows ..........\Ver2.0\one.html But, when I select two files, CommonDialog1.FileName shows ..........\Ver2.0rtwo.htmlrone.html Would you please tell me why it looks different?? Thank you in advance...
  5. bebig

    commondialog, select multiple files

    hi, I am trying to make conversion program. This is what I have so far. 1. I can convert one file 2. I can select more than one file. 3. but, when I convert more than one file, error occurs. I do not know how to convert mutiple files. Would you please help me...
  6. bebig

    multiple file selection

    Hi, I am trying to select multiple files on CommonDilog, then convert it into .tcl. My code can select one file then it converts into .tcl file and also can choose mutiple files. But the problem is when I convert those into tcl files, it does not work. Would you please help me how I can solve...
  7. bebig

    how to get password from IP address

    hi, I am trying to get password from IP address so...this is the steps what I want to do.. First, I am trying to put IP addresses from registry into txtIP comboBox. Second, When I find IP address from txtIP, then it finds automatically password. Third. If I type new IP address, it has to be...
  8. bebig

    Select All

    I have a question about "Select All" If I click "Select All" button, this will select all lists. But I have an error... Would you please look over?? This is what I have so far. ---------------------------------- Private Sub SelectAll_Click() Dim itm As ListItem Dim bValue If...
  9. bebig

    IF-ELSE

    hi,.. I have a question about IF-ELSE I want to see .tcl, htm, html, tar, txt file if Me.csvUpload doesn,t. How can I start a code?? this is my code.. ---------------------------- Private Sub Form_Load() If Me.csvUpload Then File1.Pattern = "*.csv" 'only *.csv Me.Caption =...
  10. bebig

    check box

    Hi, I have a question about checkbox for example, if I click on checkbox, and then click "selectAll" button, it will select all files on the lists. How can I start??? this is what I have.. --------------- Private Sub SelectAll_Click() End Sub ------------------- Thank you in advance.
  11. bebig

    close popup window

    I want to close this popup window after 10 sec. automatically. Would you please tell me how to do?? and...even though this window page close, does the submit process still working?? Thank you in advance ---------code---------------------- puts "<form name=Form2 method=post>" puts...
  12. bebig

    time format

    hi, I have a Question about time. how can I make the hour and minute be two digits?? for example, 5--> 05 can I use like this way?? if {$minFormat <10 } { set minFormat "0$minFormat" } thank you in advance
  13. bebig

    how to kill the process..

    hi .. i want to kill the process.. this is what I am thinking about the systax. I want to kill pid and process (err). eval exec kill [$pid $err] Thank you in advance
  14. bebig

    fixed size and freeze current toolbar buttons

    puts "<html>\n" set mydate [clock format [clock seconds] -format "%a %b %d %Y"] set mytime [clock format [clock seconds] -format "%X %p %Z"] puts "<title>$mydate $mytime </title>\n" puts "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n" puts "<META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\">\n"...
  15. bebig

    Time comparison

    I want to compare time. for example, A--> 02:35 B--> 02:45 if {A<B} { puts "correct" } can it be possible to compare "Time"? otherwise, I think..I need to compare seperately, hour & minute. Would you please give me any comment?
  16. bebig

    catch

    hi, I am trying "catch" command. ======================================== set readFileInput [open testA1.txt" "r"] If the file does not exist, the errors occur. how to start catch statment?? this is what I am thinking. set retval [catch $readFileInput] if {$retval != 1} { puts "An error...
  17. bebig

    Popup window and close

    I have popup window. when I click "Submit Schedule", I want to close popup window at the same time. Would you please tell me how to do ?? ========================================================== puts "<form name=Form2 method=post>" puts "<p><center><INPUT type=\"button\" value=\"Submit...
  18. bebig

    regexp

    <schedule id="863"/> =================== I am trying to do this...but I got error....how to write correctly regexp {(\<schedule id=\")([0-9]*)\"\>} $lineS4 t1 t2 t3 thank you in advance
  19. bebig

    search command

    I am trying to search a string and replace it. I can read a file, but I do not know how to search exact word and replace to another value. Could you do me a favor? thank you in advance. set openfile open ["xmlpage.xml" "r"] gets $openfile line while {![eof $openfile]} { #---this part, I think...
  20. bebig

    TCL command

    hi..I have a question. if I have this data. 1 2 3 4 5 6 then..if I want to delete or start with 3 how can I do this? the result will be 3 4 5 6 Thank you

Part and Inventory Search

Back
Top