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. Tom Borgmann

    Licensenumber input after automated install

    Hi guys :) i'm currently trying to install VFP9 under chocolatey (software distribution tool). I already created an 'unattend.ini' file by doing a testinstall based on .\WCU\setup.exe. The regular setup.exe can't do this as it doesn't know the parameter /createunattend. However, as VFP's...
  2. Tom Borgmann

    Changing form labels to cyrillic

    Hi @all, just wanted to give some feedback on my progress. currently it seems, after some additional testing, that all I have to do is changing the way of creating my language XMLs. So changing my testcode from CURSORTOXML( [crsCyrillic] , FULLPATH( CURDIR() ) + [crsCyrillic.xml] , 1 ...
  3. Tom Borgmann

    Changing form labels to cyrillic

    @Chris Yes, the messagebox show cyrillic letters for Yes, No, Abort, a.s.o @Chris and TomK I'll give it a try to change the XMLs to UTF-8. This might even help using them from our non-VFP Apps. We'll see :) @Tamar I know about Intl Toolkit since one of my first visits to German VFP DevCon...
  4. Tom Borgmann

    Changing form labels to cyrillic

    Hi Chris, I tested by assigning the inputvalue of a textbox to its corresponding label.caption. Ét voilà: And then there was cyrillic.... Jeeez, should have done this last week, already. Currently it seems, that adding CODEPAGE=1251 to config.fpw and placing vfp9rrus.dll into install directory...
  5. Tom Borgmann

    Changing form labels to cyrillic

    Hi Chris, just added -Lvfp9rrus.dll to the desktoplink of the test app C:\_al\mware10.1_Transa_EN\cyrillictest.exe бВэоз9иикялавв which should be -Lvfp9rrus.dll hopefully :) but this didn't change the labels. :( -Tom https://www.blogger.com/profile/08903165976787522012
  6. Tom Borgmann

    Changing form labels to cyrillic

    Hi all :) one of our customers is expanding his business to Bulgaria und therefore wants to use our app with a cyrillic interface. We set up a WinServer2019 Evaluation and installed cyrillic for 64bit as well as 32bit apps Then I placed the vfp9rrus.dll into our apps directory (right beside...
  7. Tom Borgmann

    equivalent of SPACE(2) in an SQL command needed

    IMHO there are TWO ways of doing this. version 1 (used before introducing version 2 in vfp) select 00 as myn2column version 2 select cast( 0 as n(2,0) ) as myn2column with version 1 vfp seems to create an integer but in reality it creates a numeric column of n(2,0). as this isn't a really...
  8. Tom Borgmann

    How to set myIcon to myClass

    Hi Koen, if you only want to change the container icon, you can do this within the class browser window too, by rightclicking the class and selecting [Container Icon]. Within the following dialog change the file type from symbol to bitmap. That should give you a better selection pool. But you...
  9. Tom Borgmann

    RTF Highlight command

    Hi Koen, my form is based on a pageframe called 'oFormat' and has 3 pages named 'text', 'rtf', 'html' and each object on the corresponding page is called 'editbox', either if its the VFP editbox, the rtf control or the internet.explorer control. The form has a counter called ._Searched that...
  10. Tom Borgmann

    RTF Highlight command

    Oh my.... MEA CULPA!!! I just noticed, that I was talking about the HTML implementation code of my editor and not the RTF one. SORRY! RTF indeed doesn't have CTRL+F implementation. It is part of the Internet Explorer ocx. So I dived into the code and looked for the way I implemented the...
  11. Tom Borgmann

    RTF Highlight command

    I don't know what RTF control you are using, but I use the standard ocx and IT HAS CTRL+F functionality. I'm using it for years and its an ocx from 2003. But....maybe this is the reason and newer versions don't have it anymore.... EDIT: I mixed up Internet Explorer and RichText OCX. RTF indeed...
  12. Tom Borgmann

    RTF Highlight command

    Hi Koen, if you use CTRL+F within the RTF object itself, you should get the Search/Replace dialog thats integrated within the control. I haven't tried it yet myself, but by sending a KEYBOARD CTRL+F to the RTF control, this function could be triggered. JM2C -Tom...
  13. Tom Borgmann

    directory name is invalid.

    Hi Sam, instead of using this code CurrDir = SYS(5) + SYS(2003) IF RIGHT(CurrDir,1) == "\" * DO NOTHING ELSE CurrDir = CurrDir + '\' ENDIF you should use this function CurrDir = ADDBS( SYS( 5 ) + SYS( 2003 ) ) ADDBS() (=Add BackSlash) only adds a Backslash if there isn't one...
  14. Tom Borgmann

    directory name is invalid.

    I'm not sure if I can give a solution, but it might be worth a look. First things that come to my mind in such cases are shadow copy folders and UAC. Well, shadow copies are usable for folders and volumes, but as soon as windows makes a shadow copy of a volume/folder/file, it might block...
  15. Tom Borgmann

    ICON ATACHMENT IN FOXPRO

    I've been using an Icon Editor for years just for creating icons with 32bit, 8bit and 4bit bitmaps in 16x16,24x24,32x32,48x48,256x256 pixels ( IN ONE SINGLE ICO FILE!!!). Windows can take want it likes most and usually an icon is shown without problems. But.... within Windows Explorer this...
  16. Tom Borgmann

    Skins

    Hi Nigel, you might have a look at Doug Hennigs new M$ Office 365 Style ribbon class. It's pretty cool and an xml file is used for coloring so it is rather easy to add or change new and existing styles. -> https://github.com/DougHennig/Ribbon HTH -Tom...
  17. Tom Borgmann

    oleRTF - NumbericList or OrderedList

    Hi Koen, some years ago I had to write a form that was able to handle html, rtf and unformated text, more or less the same as the regular Outlook editor. I came up with this form: Each ribbon button as assigned a unique keynumber that is used in the buttonhandler method. BOLD is 11, Italic...
  18. Tom Borgmann

    What is an API?

    some years ago I tried to explain on my blog how ReST services work. It was a 7-part series and the offered translation by *goggles* isn't that bad at all. Perhaps it might help, to read it. Have a look here: https://tomsvfpblog.blogspot.com/2018/10/vfp-das-web-und-der-ganze-rest.html There's a...
  19. Tom Borgmann

    VFP9 Report "Rotation of Text"

    Hi Asif Ali, the only thing you're doing wrong is using a VFP version that can't work with such reports. Rotation of text was made available with VFP9s new reporting apps. BUT!!!!! in your case there isn't any text rotation needed. What you are trying to achieve is to rotate the complete...
  20. Tom Borgmann

    What is an API?

    As Griff and Mike already explained what API stands for, you might have noticed that you have already created you own internal APIs, though they might not be called API but CPI (where the 'C' stands for Class), or FPI (where 'F' stands for Function). Well, you name it :) Mostly those internal...

Part and Inventory Search

Back
Top