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

  • Users: R17
  • Order by date
  1. R17

    not allow column resizing in grid

    thanks darrell!
  2. R17

    not allow column resizing in grid

    how can i not allow column resizing in grid? TIA
  3. R17

    suppress prompting in COPY FILE

    i'm sorry for the confusion, i had the suppressed the prompting by putting "set safety off" at the beginning of my code. thanks to you.
  4. R17

    suppress prompting in COPY FILE

    got it with set safety off!
  5. R17

    suppress prompting in COPY FILE

    everytime i issue, copy file h:\dtr\*.* to c:\dtr\*.* foxpro asks me if i want to overwrite the file, how do i suppress the prompt? TIA
  6. R17

    print when problem in report designer

    got it! because the expression iif(drange=0,iif(dday!="30" or dday!="31",dday,""),dday) does not result to any logical value, it is not printing dday. so i changed it to, iif(drange=0,iif(dday!="30" and dday!="31",.T.,.F.),.T.) now i get the...
  7. R17

    print when problem in report designer

    even if it always evaluates to T, why would dday be printed if i changed the IIF to, iif(drange=0,iif(val(dday)!=30 or val(dday)!=31,dday,dday),dday) or suitably changed it to iif(drange=0,iif(val(dday)!=30 and val(dday)!=31,dday,dday),dday)
  8. R17

    print when problem in report designer

    i tried, iif(drange=0,iif(val(dday)!=30 or val(dday)!=31,dday,dday),dday) and dday's still not displayed!
  9. R17

    print when problem in report designer

    hi baltman, i'm sure dday is 2 characters. i have dday!="31" in print when in other textboxes except for this one, dday are displayed except of course for 31. now i do not want to print 30 and 31 in textbox dday. i'm confused too, does print when don't accept IIF's? any more help...
  10. R17

    print when problem in report designer

    brian, neither of the solution worked. any more help?
  11. R17

    print when problem in report designer

    i have in variables drange and dday with values 0 and 1-31 respectively. i have a textbox in my report and i put this in "print when" iif(drange=0,iif(dday!="30" or dday!="31",dday,""),dday) that is, i do not want to print values 30 and 31 if drange=0...
  12. R17

    error: function requires row or table buffering mode

    putting the code in the init event did not solve my problem, however mirekzvolsky's solution did! thanks a lot!
  13. R17

    error: function requires row or table buffering mode

    why am i having error "function requires row or table buffering mode" at this line, if !tableupdate() thisform.txtempno.setfocus() return endif in my form's load event i have, set multilocks on =cursorsetprop("buffering",5,"money") =tableupdate(.t.)...
  14. R17

    How Do you Make a Form from an Existing Class

    fmoore0001, from the "view classes" in your toolbar, select add. locate the class you want to use. foxpro will add a button just beside the "view classes" for your class. then drag it in your form. HTH
  15. R17

    Check the date if Valid in VFP6

    ellehcsim, in your form's init event, put thisform.text1.value=date(), and foxpro automatically checks if the entered date is valid or not. foxpro will give you a message "invalid date" if you entered an invalid date. HTH
  16. R17

    hide dos window problem

    as simple as that! thanks chris!
  17. R17

    hide dos window problem

    hi chris, what can i do to hide the DOS window? i used madhater2002's code but i'm having this error, OLE error code 0x80070002: The system cannot find the file specified. what's wrong?
  18. R17

    hide dos window problem

    hi, i have this code if file(&quot;h:\dtr\dtr.exe&quot;)=.t. =adir(lalocal,&quot;c:\dtr\dtr.exe&quot;) =adir(laserver,&quot;h:\dtr\dtr.exe&quot;) if lalocal(1,3)<laserver(1,3) ?winexecrun(&quot;copy h:\dtr\*.* c:\dtr&quot;) else if lalocal(1,3)=laserver(1,3) if...
  19. R17

    adding pictures to toolbar with microsoft toolbar control

    chris, found it out just now, it's a lot easier using class!
  20. R17

    adding pictures to toolbar with microsoft toolbar control

    i used microsoft toolbar control to add a toolbar in my form. but i don't know how to add pictures to my button. i have added a microsoft imagelist control and added all pictures there. i've chosen the imagelist as the imagelist of the toolbar control. but i still don't see any picture. how do...

Part and Inventory Search

Back
Top