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!

Search results for query: *

  • Users: desprits
  • Content: Threads
  • Order by date
  1. desprits

    How To Share Database ?

    Situation: I am in network. My computer is called "Priscilla". My database is called " GestionInternet.mdb " and it is in " c:\Program File\Gestion Internet Client". My Purpose: to share the database" GestionInternet.mdb " so that my VB software can be to use in network. What should I do !? Plz.
  2. desprits

    Shortcut Execute file on other Computer ..

    Situation: we have 2 computer in network. The First one = "A" and Second = "B". The file.exe is on the computer "A". Is it possible to create a shortcut which start of "B" computer to execute the file.exe which is on "A" computer? Thk!
  3. desprits

    Database on Network!

    How I should proceed to install on a local area network a program in VB which uses an Access database ! I want to share the database. Thk!
  4. desprits

    Database on Network.!

    How I should proceed to install on a local area network a program in VB which uses an Access database ! I want to share the database. Thk!
  5. desprits

    My Linux server don't supports the php !? Why ?

    What I should make for that my Linux server supports the php language ?
  6. desprits

    Negative number in a positive number ?

    Which function I should use to convert one negative number in a positive number!?
  7. desprits

    Unexpected error number 380 ?

    When I try to make an install program of my visual basic code .. this error appear : Unexpected error number 380 has occurred: Invalid property value. Why !
  8. desprits

    How to create a FILES

    I would like to know what should I do to know if a files exist in VB. Exemple : if File1 exist then else Create File1 endif
  9. desprits

    OPEN Excel file WITH VB !?

    When I do that : IT's OK MsgBox "monExcel.Workbooks.Add PathExcel" monExcel.Workbooks.Add PathExcel monExcel.Application.Visible = True But when I do that : It's cause FATAL error MsgBox "monExcel.Workbooks.Open PathExcel" monExcel.Workbooks.Open PathExcel ' HERE ERROR...
  10. desprits

    Erase SPACE in a string !

    What is the function to erase SPACE in a string ! Exemple : MyString = " 2 " I want : MyString = "2" Txk!
  11. desprits

    Fatal error when open Excel with VB

    What Fatal error means when I do this in VB : monExcel.Workbooks.open PathExcel
  12. desprits

    HOW SORT 2 recordset ?

    What should I do to sort two recordset ? Exemple: First SORT by DateUtilisation Second SORT by HresDebutUtilisation This don't working: adoTriTemps.Recordset.Sort = "DateUtilisation ASC" And "HresDebutUtilisation ASC"
  13. desprits

    WRITE IN A TEXTE FILE?

    I would like to know what should I do to be able to write in a text file ? I know how to open a text file : Open "c:\temps" For Input As #1 ' Open file. I know how to read a line in text file : Line Input #1, TextLine ' Read line into variable. But I don't know how to WRITE in...
  14. desprits

    Search a PART of a WORD ?

    What should I do to search a part of a word .. Exemple, I just want to do someting when I have letter A .. Allo --> do something Jack --> do something Zoro --> do noting Luc --> do noting Amanda --> do something Dim namePerson as String For i = 0 to 20 namePerson =...
  15. desprits

    What should I do to sort 3 items ?

    What should I do to sort 3 items in a dataBase? For exemple : Zoro 5 Fev 18:20 Zoro 5 Fev 17:25 Amanda 5 Fev 21:40 Jack 6 Fev 19.30 Amanda 7 Fev 03:22 Me I would like to have the result : Amanda 5 Fev 21:40...
  16. desprits

    Calculate time + time ?

    What should I do to calculate time if my variable are in a string format ? Exemple : 00:30 00:14 00:08 02:24 12:51 00:14 ------ ????? My code is : TotalTemps = TotalTemps + Val(adoTriTemps.Recordset!Temps) TotalTemps Type = Variante Temps Type = Texte
  17. desprits

    This routine work only with a small file !?

    This routine does not work when I fact with a big file (the routine is only once executed and goes out at once of Do While) but with a smaller file that works. Why? Private Sub cmdTriTemps_Click() Dim TextLine Dim LoginUtilisation As String Dim IpInfoUtilisation As String Dim DateUtilisation As...
  18. desprits

    How to manipulate a string ?

    What should I do if I have this string and I just want to take this part of string. Exemple : tijean 024:zFwA 204.92.0.41 Sat Feb 7 (00:01) I just want to have "204.92.0.41" ? Merci!
  19. desprits

    HOW TO READ A LINE IN A TEXT FILE, TO VB ?

    What the code should I do to be able to read a specific line in a text file ? Please ! Merci !

Part and Inventory Search

Back
Top