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 strongm 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: *

  1. AlexRezid

    Crystal Reports: Top 10 percentage

    Hi, You can download the report from: http://dl.free.fr/bnLlf1LeP/Cust_Av1_d.rpt I would like to have top 10 of percentage. Thank you.
  2. AlexRezid

    IP Address into Variable

    If you have a dynamic IP Address that isn't in your /etc/hosts, try that : myIP=`/sbin/ifconfig eth1 | grep addr: | awk '{print $2}' | awk -F : '{print $2}'` It could certainly be ameliorated, but it works fine Hope this help AlexRezid
  3. AlexRezid

    VBS : Copy, Zip, Copy script

    I want a module that take a file, copy and zip it, look for the size, ask for one or more 3.5" disc and copy the file on the disc(s) Could someone help ? Thanks AlexRezid
  4. AlexRezid

    how to force tail -f continuous

    Suhaimi I've no unix box there so I can't verify, but I'm sure there is one on Linux... That's why I said that Alex
  5. AlexRezid

    how to force tail -f continuous

    Maybe could you use the "watch -n NumberOfSeconds tail -f YOURFILE" command for doing what you want... That's it if I've understand your meaning. Alex
  6. AlexRezid

    FileCopy Error

    Hum... I write that : copy "C:\Mes documents\Fichier Client\Client_db.mdb" "C:\Mes documents\Fichier Client\Client_db_save.mdb" "C:\Program Files\Microsoft Office\Office10\MSACCESS.EXE" "C:\Mes documents\Fichier Client\Client_db.mdb" Exit But it let...
  7. AlexRezid

    FileCopy Error

    Good Idea !! Thanks Paddyo Alex
  8. AlexRezid

    FileCopy Error

    Thanks It works, but not with an open file... And the file I want to copy is my file .mdb with is launching this script... How can I do ? Any Idea ? Alex
  9. AlexRezid

    FileCopy Error

    Hi all I've a problem with FileCopy Private Sub SaveMeAll() Dim Source As String, Dest As String Source = "C:\Mes documents\Fichier Client\Client_db.mdb" Dest = "C:\Mes documents\Fichier Client\Sauvegarde-" & Day(Now) & "-" & Month(Now) &...
  10. AlexRezid

    Redim usage

    Thanks for all SonOF... I finally did it differently Here is my code to count the number of lines Dim Occ As Integer Public Function ScanLine(s) Dim LengthofLine Dim checking Dim theLine Dim Tmp Occ = 1 Tmp = 0 theLine = s LengthofLine = Len(theLine)...
  11. AlexRezid

    Redim usage

    Thanks SonOf... Now, I've another problem... I want to compare each char of my string to the return (\n) char, but I don't know how to write this char in VB... Because if I write '\n' it tells me an error and if I write "\n" it compares with the string that is write by this two...
  12. AlexRezid

    Redim usage

    Hi all I jsut want to redim a string (Mystring) to a table of char (ie : string(0 to Len(Mystring))) How can I do that ? Thanks Alex
  13. AlexRezid

    Redim use with strings

    Hi all I hust want to redim a string (Mystring) to a table of char ie string(1 to Len(Mystring)) How can I do that ? Thanks Alex
  14. AlexRezid

    What's wrong in that code ??

    No... Thanks :p But it still don't work... :( Any Idea ? Alex
  15. AlexRezid

    Dynamic form with Access 2002

    Thanks for all Orion I've already a problem with your script in case of blank fields... It tells me : rsKeysize.Fields("Len1") : Method or data Member not found How can I avoid it ? And for your help : a star :p Alex
  16. AlexRezid

    What's wrong in that code ??

    Hi all ! This script is included in a HTML web page. <SCRIPT language=vbs> <!-- Sub TestGo(Value As Integer) Dim i As Integer Dim strsql As String set cnn = CreateObject(&quot;ADODB.Connection&quot;) set Record2 = CreateObject(&quot;ADODB.Recordset&quot;)...
  17. AlexRezid

    What's wrong in that code ??

    I try this code for going to record X in a AccessDB using a web page... But I don't know why, it works if I put it on an Access form, but it doesn't work any more in a web page Could someone help ? <SCRIPT language=vbs> <!-- Sub TestGo(Value As Integer) Dim Record2 As New...
  18. AlexRezid

    Dynamic form with Access 2002

    So, Access is really dummy... If you enlarge a fields, it doesnt put the next one go away... So, I tried to make a Sub for going to the next record, It works in access form, but not in web pages. It wrote this : <SCRIPT language=vbs> Sub TestGo(Value As Integer) Dim Record2 As New...
  19. AlexRezid

    Dynamic form with Access 2002

    Sorry, It works But it's not exactly what I wanted... I want the form to be resized dynamically for each record, and not to be as big as the biggest record... Is it possible ? If yes, how have I to modify that ? Thanks Alex
  20. AlexRezid

    How to access next record in MS Access Web Pages

    Could someone help please ? Thanks Alex

Part and Inventory Search

Back
Top