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 SkipVought 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. sarah77

    Grdi does not show Table contents !!! Help me

    I created a new simple form contains a grid linked to a table AGENTS. When I run the form then the grid is getting empty despite the table AGENTS contains data. WHY ? If I link the grid with any other table then grid shows up fully with data. Very strange to me. Any help will be much appriciated
  2. sarah77

    Can not sum ? Strange!

    Here is the code I hope it's clear and readable. I'd like to say that the program is getting inside the loop. * mMAN=1.833 mNET=0 mMONTHLY_REMAIN=0 mTOTWT=0 mTOTRT=0 mMONTHLY_V=0 mOK=.F. mBEFORE_B7=.F. mSLOT="IPS401" mCONT_CODE="SLBS2" * SELECT TIMESHEET SET ORDER TO SLOT...
  3. sarah77

    Can not sum ? Strange!

    In my program (VFP5) I wrote the following statement inside a loop to sum a certain values in one variable called mMONTHLY_REMAIN : mNET=0 mMONTHLY_REMAIN=0 DO WHILE ..... .. .. .. mNET=(((INT(ROUND((mMAN_MONTH*1.833),15)*1000))/1000)-mMONTHLY_VACATION) mMONTHLY_REMAIN =...
  4. sarah77

    User Active Directory Not Working ?

    An error message says "Autority information could not be founded" show up when I try to open "Active UserDirectory MMC". But All predefined users can login to the server and have acces to it with their predefined permissions. Anyway can help to me to get into the "User...
  5. sarah77

    Get file details on hard disk

    I want to do this: - Check if a certain directory exist on a hard disk ? - Check if a certain file exist on a hard disk ? - Get the file name,file date,file time exist in a certain folder on hard disk. Thanks for any comment
  6. sarah77

    How Do I Create Directory ?

    How do I create a directory on drive "C" within a visual foxpro5 ? Thanks
  7. sarah77

    Trapping two kinds of errors ?

    I'd like to trap two knids of errors. These are : - Index does not match. - Validate database. Does anybody knows how to use ON ERROR command to trap and simulate these two errors. Any help will be much appriciated. Thanks
  8. sarah77

    Data does not show up on the DataGrid !!!

    I created a data environment (de) contains two commands(Pc.Mdb) & (Items.mdb) contains two table (Items) and (Pc): - De - Pc - Items A data grid called (GrdPc) is linked with (Pc) table so the GrdPc.DataSource=De GrdPc.DataMember=Pc The properyies of grid of Allowed...=True for...
  9. sarah77

    Please help me on a Roundation problem ???

    Thanks Wawalter its really helped me eventhough I used with 15 decimal as : ? round((22/12/30),15)*27 Thanks a lot
  10. sarah77

    Please help me on a Roundation problem ???

    In my program I need to calculate the vacation balance. Within a process there is a field resulted of: Vac_Balance = (22/12/30)*27 The result should be 1.649 , but it gives me 1.650 ??? When I divided (22/12/30) separtely it gives me (0.06111111111) and then by multiply : (0.06111111111)*27...
  11. sarah77

    Autofix a corrupted index file ?

    I've a program written in VFP5 and I open the tables at the begining : use employee in 1 use payrol in 2 use vacations in 3 and I close the tables when the program is end. Some times "Index does not math...." comes to the user so is there a way to detect that index is corrupted...
  12. sarah77

    upper case ?

    How do I capitalize the character in both TextBox and DataGrid ? Thanks
  13. sarah77

    Object already open ? Can I know before !!

    Program error says "object already open" when it reach the statement : De.RsPc.Open De is related to the Data environment RsPc related to a table Is there a way to know if RsPc is opened or not such as ( if De.RsPc.Open=True )... any comment ? (VB6) Thanks
  14. sarah77

    Object Already Open ??

    Program error says "object already open" when it reach the statement : De.RsPc.Open De is related to the Data environment RsPc related to a table Is there a way to know if RsPc is opened or not such as ( if De.RsPc.Open=True )... any comment ? (VB6) Thanks
  15. sarah77

    Zero of the decimal does not want to print (0.250) ???

    I found a way at the moment of printing without changing the value of the field as the following : if left( right(str(12.25),3),1 )="." then print str(12.25)+"0" endif the result will of printing will be 12.250 Thanks for everybody tried to help
  16. sarah77

    Zero of the decimal does not want to print (0.250) ???

    Nop, i'm using visual basic 6 to write an application that requires to print any numeric value with the last three decimal eventhough the third one is zero such as (0.250) . thanks
  17. sarah77

    Zero of the decimal does not want to print (0.250) ???

    I'm not be able to print a numeric field witha value 0.250 ? It always printed as 0.25 and the user wants three decimal digits 0.250 ( any comments ). Thanks
  18. sarah77

    Display only the first three digits !!

    Thanks for all of you .... Ramani solution works only for display Chpicker and Marsh solutions works for display and for any process suh as * / - + Thanks for all of you
  19. sarah77

    Display only the first three digits !!

    If i've a numeric fields with (1.753781) value so how can I display or treat with only the first three decimal digits to be (1.753) without any ROUNDATION ??. Thanks for any help sent
  20. sarah77

    Why job is failed when it is Scheduled ?

    Thanks, it was really a matter of permission. I found in propreties of "sql server agent" of server2 that the user "domain/administrator" who is starting the sql agent. By asking the netwokrk administartor he said that he changed the password of...

Part and Inventory Search

Back
Top