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

    how to make automatic backup in databases

    is it possible to make backup for my database?in my main program, is it enough to place such as SET AUTOSAVE ON in order to save those file in case of power problem(brownout)? Or anything best way to do that... zhed
  2. zhed0708

    help in using EOF for searching

    I am searching the last record i save using the BOF() but it does not search the last record instead the first record viewed. whats wrong in my code? SELECT transaction SET ORDER to id LOCATE FOR name = ALLTRIM(thisform.txtname.Value) IF FOUND() IF !BOF() then thisform.txtctcnum.Value =...
  3. zhed0708

    check box problem

    how to search the value of check box if the type in the field is logical?i tried the thisform.check1.value to search it but it does not display check, but when i browse it, it is true. zhed
  4. zhed0708

    help in log in form

    how to close log in form if the user login in 3 attempts? zhed
  5. zhed0708

    problem in deleting mm/dd/yyyy

    can anyone help me how to delete mm/dd/yyyy date format?and its type in the table is in DATE. when i run the form and delete the value of my txtdate, the character / is also deleted..how can i remain those two character signs (//)? thanx for advance... zhed
  6. zhed0708

    set filter problem

    how to use set filter.... i have a code in set filter but in the presence on the table.. LPARAMETERS tcFieldName, tcSearchText SET FILTER TO && clear any previous filters SET FILTER TO ALLTRIM(UPPER(&tcFieldName)) = ALLTRIM(UPPER("&tcSearchText")) GO top thisform.refresh() i want to use...
  7. zhed0708

    menu problem

    plz help.... i want to disable my menus and i have this code in my OK command in login: IF staff.admin = .f. then SET SKIP OF PAD maintenance OF _msysmenu .f. SET SKIP OF PAD admin OF _msysmenu .f. ENDIF i have fields in my staff table of admin and have its type of logical..i want to...
  8. zhed0708

    problem in printing the last record

    i'am having problem in printing my report. i want to print the last record that was save in the table..my code is here: IF NOT EOF() AND NOT BOF() currentRecord = RECNO() REPORT FORM renew FOR RECNO() = currentRecord TO PRINT PREVIEW ENDIF but when i print the last record i save, my...
  9. zhed0708

    error cannot update the cursor, table name is read only

    plz help me... i have a vfp project in it is already finished. i build my main program and run it, it is pretty good. no errors and etc. but when i compile it using INNO setup,(during the process of compiling there is no error found) and install and run my application, i met error like cannot...
  10. zhed0708

    encrypt the folders in program files after installing vfp application

    how should i encrypt the folders when i finished installing my vfp application? I want it encrypt to avoid editing of my forms,datas and etc. in my vfp project. plz help me and thanx for advance...!!!!!!!!111
  11. zhed0708

    enabling/disabling menus depending on user rights

    plz help me.... i have an vfp project and i want to disable and enable the menus depending on the user type.I have a menus File,Admin,Maintenance,View and Help. And i want to disable menu Admin and maintenance when the user is log in. And enables all the menus if the admin is log in. What shoul...

Part and Inventory Search

Back
Top