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 Wanet Telecoms Ltd 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
  • Order by date
  1. bebig

    Files with spaces

    Yes...I did not want to see the files with spaces.. So...I think vladk's idea was good... But it was difficult to change my current code using your idea... So, Instead of not showing the files with spaces, I use that way.. Thank you for all your help
  2. bebig

    Files with spaces

    This works for me.. Private Sub File1_Click() If (InStr(1, File1.FileName, " ", vbTextCompare) <> 0) Then File1.Selected(File1.ListIndex) = False End If End sub
  3. bebig

    Files with spaces

    oh..ic...thank you
  4. bebig

    Files with spaces

    This is what I wrote.. If InStr(1, "*.html", " ", vbBinaryCompare) = 0 Then File1.Pattern = "*.tcl;*.htm;*.html;*.jpeg;*.gif;*.swf;*.txt;*.pdf;*.css;*.xml;*.png;*.tar;*.tgz" End If well I tried this way..but it did not work..so..
  5. bebig

    Files with spaces

    File1.Pattern = "*.tcl;*.htm;*.html;*.jpeg;*.gif;*.swf;*.txt;*.pdf;*.css;*.xml;*.png;*.tar;*.tgz" I have more than one file. how to apply your idea on it?
  6. bebig

    Files with spaces

    Yes...that's what I am trying. If the file name has " ", skip the file in the upload..
  7. bebig

    Files with spaces

    Private Sub Form_Load() If Me.csvUpload Then File1.Pattern = "*.csv" Me.Caption = "CSV File Upload" Else File1.Pattern = "*.tcl;*.htm;*.html;*.jpeg;*.gif;*.swf;*.txt;*.pdf;*.css;*.xml;*.png;*.tar;*.tgz" End If End Sub In this code, it takes only those files as...
  8. bebig

    Files with spaces

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

    Find String

    Well, I tried it..but I could not get it. I am not sure how to take each character as a whole string. When I check textbox, it still gets one by one. If I take it as a whole string, I can use MID function to get exact string. Would you please tell me how to get a whole string, not each...
  10. bebig

    Find String

    can I use those ways when a string take one by one?
  11. 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...
  12. bebig

    Date and Time Validation

    Thank you.
  13. 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.
  14. bebig

    CommonDialog

    ...Would you please tell me why it looks different?? Thank you in advance. -----code------ CommonDialog1.Filter = "Web Files|*.htm;*.html" CommonDialog1.Flags = cdlOFNAllowMultiselect Or cdlOFNExplorer CommonDialog1.FileName = vbNullString CommonDialog1.ShowOpen FileName =...
  15. bebig

    commondialog, select multiple files

    ...Dim i As Integer Dim FileName As String Dim sFile() As String On Error Resume Next CommonDialog1.Filter = "Web Files|*.htm;*.html" 'CommonDialog1.Flags = cdlOFNAllowMultiselect + cdlOFNExplorer CommonDialog1.Flags = cdlOFNHideReadOnly Or cdlOFNPathMustExist Or...
  16. bebig

    multiple file selection

    I am still trying to take each file of the selected mutiple files from commondialog1. Please help me, how to get each file?? Thank you in advance.
  17. bebig

    multiple file selection

    when I select mutiple files, I cannot convert those files into TCL. So, My Questino is If I select more than one files, how to catch each file and convert those sequencially (But when I select one file, it converts.) For example, 1. select a.htm, b.htm, c.htm, d.htm 2. convert a.htm first 3...
  18. bebig

    multiple file selection

    ...Private Sub Convert_Click() Dim FileName As String On Error Resume Next CommonDialog1.Filter = "Web Files|*.htm;*.html" CommonDialog1.Flags = cdlOFNAllowMultiselect + cdlOFNExplorer CommonDialog1.FileName = "" CommonDialog1.ShowOpen 'selected file...
  19. bebig

    how to get password from IP address

    Yes...that is true. But, onece I type IP address, user, password, I want to put those into registry. Then when I re-open the page, I will pick up IP address from txtIP comboBox, at the same time, I want to see Password which is getting from registry on txtPass.Text area. Would you please help...
  20. 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...

Part and Inventory Search

Back
Top