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

  • Users: SYN
  • Order by date
  1. SYN

    file system problems VFP9?

    Unfortunately last given solution of opportunistic locking wasn't right. Microsoft said they do see this problem occasionally where “Alias is not found” or “File is in use by another” errors, and a lot of the time it is caused by faster computers trying to access the table at the same time...
  2. SYN

    file system problems VFP9?

    Gentlemen, you're great! It seems that vfp9 uses the Opportunistic locking from the server more than VFP6 does, although I can't proof that. I found several knowledgebases: http://support.microsoft.com/default.aspx?scid=KB;en-us;q129202...
  3. SYN

    file system problems VFP9?

    No, we use the older pessimistic mode of locking as standard in our software.
  4. SYN

    file system problems VFP9?

    Several of our customers reported errors such as "File is in use","File not open", "Record is in use..." etc. It's remarkable that only those of our VFP9-pilotcustomers report this. Other customers, who have the same programs, but still working in VFP6, don't have these errors. It seems that...
  5. SYN

    change events outside the class

    I tried this and works Ok for me. Thanks.
  6. SYN

    change events outside the class

    I'm rewriting fox2x-source to vfp8. A lot of @Get's has to be 'transformed' into for example textboxes. Most old @get's have valid and when parameters. I want to create 1 textbox class for these @get's. The valid and when events are readonly. Is there a possibiliy to use my old valid parameters...
  7. SYN

    row and column in an editbox??

    Mike, I want to show to the user of this editbox the moment of making a new page (the editbox is beiing used for textediting which can be printed afterwards). So I have to know how many rows are beiing used. Do you have a suggestion? Regards
  8. SYN

    row and column in an editbox??

    Hi, I have a editbox on a form. The controlsource is a memo field. Is it possible to determine the current row and column from the cursor? thanks in advance
  9. SYN

    sourcecode of the Find/Replace text dialog box

    I'll try this. But do you know what function is used to find/repl in a text editor? The menu is english and I'm looking for a dialog in the user-language. I thougth the ReplaceText would be the best one. Do you have other suggestions?
  10. SYN

    sourcecode of the Find/Replace text dialog box

    AirCon, I can't make it work (because I'm not familiar with api-calls) I simply replaced the findtext with replacetext. Isn't that enough? *.* hwndFind = FindText (@lcFindReplace) hwndFind = ReplaceText (@lcFindReplace) *.* DECLARE INTEGER FindText IN comdlg32 STRING @ lpfr DECLARE...
  11. SYN

    sourcecode of the Find/Replace text dialog box

    AirCon, thanks for the url. I tried this but the replace function isn't defined here. I know there is also a replacetext-function in comdlg32. Do you know anything about this or another way to use these funtions? Regards
  12. SYN

    sourcecode of the Find/Replace text dialog box

    Hi, I'm looking for the (vfp) source-code of the find/replace text dialog box (from comdlg32) Thanks in advance.
  13. SYN

    Problem with @ get

    No, I'm sorry, this is not an option.
  14. SYN

    Problem with @ get

    Rick, I'm rewriting fpd code to vfp. I've got my own 'get' function but this function doesn't get (always) the picture-parameter. But, your answer confirmed my own thoughts. Do you know a good function which determine the size (based on the font and it's size?)
  15. SYN

    Problem with @ get

    Hi, I'm still working with @ get in vfp. As long as non-proportional fonts are used, there is no problem but if I use for example Arial, the width of the get doesn't correspond with the variable. So I'm changing the width with the size parameter. But... now there is more input possible then the...
  16. SYN

    full description of @... class

    wgcs, thanks for your suggestions!
  17. SYN

    full description of @... class

    I understand what you're doing in the read function. I'm trying to make the @say to act like a @get (be three dimensional). If the edit mode is activated, and the @get overwrites the @say that the result is just a blinking cursor in that field. I think that the @say in your read action becomes...
  18. SYN

    full description of @... class

    I knew about the textbox at pageframe1.Page1. But how do you get the 'windows' look in this code: t_text = "mytext " @ 2,1 say t_text @ 2,1 get t_text read @ 2,1 say t_text My solution was to replace the @say command with a mysay-function which places a textboxobject (enabled =...
  19. SYN

    full description of @... class

    Mike, I really hoped that I could use the orginal parameters from @ GET such as VALID, WHEN ect in the @... class. Thanks for thinking
  20. SYN

    full description of @... class

    Mike, back to my first question: do you have a full description of the @...class command with all parameters?

Part and Inventory Search

Back
Top