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

    How to compare objects from two exes?

    I want to compare the objects created in 2 exes which are built using VFP6 SP5 and VFP8 SP1. I think about using saveas to save the objects in scx and then compare the scxs but the objects I want to compare are based on user-defined classes so saveas won't work according to VFP help. Basically...
  2. pctest

    CR8.5 and labels

    Can CR8.5 be used to create labels which can be printed on dot matrix printer? Someone tells me that CR will always eject so it won't work for dot matrix printer.
  3. pctest

    What is COM add-in for Microsoft Office 2003?

    I'm reading this page: http://www.veritest.com/certification/ms/office.asp but don't know what add-in means. Thanks.
  4. pctest

    Create an ODBC System DSN programmatically

    I know that I can use SQLConfigDataSource to create an ODBC System DSN. But I will like to know what happens to those settings like language and Use ANSI quoted identifiers. Are those settings will be default to the settings from the SQL Server so it will be similar to the checkbox Connect to...
  5. pctest

    Difference between SQL Server 7 and 2000 to set ansi_padding.

    Are there any difference between SQL Server 7 and SQL Server 2000 regarding set ansi_padding? I have the following script: set ansi_padding on declare @x integer select @x = 1 select case when @x = 1 then 'test ' else 'test2 ' end + 'result' Running the script in SQL Server 2000 will get...
  6. pctest

    How to make sure that the right function being called?

    function X exists in dummy1.prg. function X exists in dummy2.prg. dummy1.prg is built into test1.exe and dummy2.prg is built into test2.exe. test1.exe can call test2.exe. How can I make sure that when test1.exe calls test2.exe and test2.exe is using function X of dummy2.prg not the function X...
  7. pctest

    Is semicolon required for Batch of sql statements?

    According to SQL BOL, semicolon is required to separate statements. But I can issue the following using VFP8SP1 and ODBC: csql = "select * from table1 " + ; "select * from table2" sqlexec(1, csql) It works as long as there is a space to separate the statements. I wonder whether this will...
  8. pctest

    How to convert decimal to hex and vice versa?

    I know I can use transform("T", "@0") for decimal to hex but I don't find a funtion for hex to decimal.
  9. pctest

    Is this a known problem in updating SQL text field with memo?

    I notice that if I update a SQL text field with a VFP8 memo field and the content of the memo is something like: ABC\ TEST Note: After the \, there is a chr(13). The SQL text field will become: ABC TEST The backwards slash will disappear. The problem only occurs when the \ is...
  10. pctest

    Slow in loading a form in Windows 2000 Professional

    Are there any known performance issue in loading VFP6 forms in a Windows 2000 Professional workstation when the forms are located in a SBS 2000 machine? Thank you for any help.
  11. pctest

    How to find the current value of a textbox in the KeyPress event?

    I'm using VFP 8 SP1. I want to able to find the current value of a textbox in the KeyPress event. For example, if the textbox has "AB" already and then I enter "C", I want to able to tell that "C" will be the new value of the textbox in the KeyPress event. Another example, if the texbox has...
  12. pctest

    What are the possible causes for Resource File is not valid?

    I want to know the possible causes for the dialog: The resource File is not valid. Overwrite it with a new empty one? There is a foxuser.dbf/fpt in the current directory. The config.fpw in the current directory has Title configuration. Thank you.
  13. pctest

    Does anyone have ever used functions such as cpconvert?

    I want to understand more about windows locale, code page. Try cpconvert but the converted characters are same as the original expression. I assume that I will able to convert English characters to other language and vice versa by using cpconvert. If there is any article about this area, it...
  14. pctest

    What does Debug Info do?

    If I build an exe with Debug Info checked, does it mean that I can see the source code of VCX, PRG, SCX with the trace window? Is there a way to build an exe so that source code cannot be seen but the line # can be shown if an error occurs? Thank you for any help.
  15. pctest

    How to update Microsoft SQL Server data for different language?

    I have a text file which has some ASCII extended characters such as ˜?~¡ÅÂÃ͹Ãv™Æ¼È¶|oœ¼Â¬¾¸tg‰†d|vztxj]. I want to update it to a non-Unicode column in SQL Server and then read it back. If the Windows locale is English, I have no problem. But if the Windows locale is something like Chinese...
  16. pctest

    How to check corruption in foxpro dbc and dbf?

    Are there any tools or methods to check for corruption in foxpro (VFP 6 SP5 and VFP 8 SP1) dbc, dbf and other related files? Thank you.
  17. pctest

    Does XP SP2 have any impact on Office Automation from VFP?

    I just want to check whether anyone has experienced has problem in Office Automation from VFP after XP SP2 is installed. Thank you.
  18. pctest

    How does astackinfo() work with Debug Info?

    After I build an exe with the Debug Info checked, what should astackinfo() return if there is an error? Note: The methods in both scx and vcx are stripped out before building the exe. This is my finding: If the error is from scx, it will able to show line # and source code. If the error is...
  19. pctest

    How to ignore InputMask if nothing is entered?

    If an inputmask is XX.XXX.XXX but I don't wan't the '.' to be saved if nothing is entered, how to do it? Thank you for any help.
  20. pctest

    Does set coverage to require files other than VFP runtimes?

    I'm trying to use set coverage to in a scx. But I don't get anything and no error. The appplication is compiled using VFP 6 SP5 and only VPF6 runtimes files are installed. I wonder whether set coverage to requires coverage.app installed.

Part and Inventory Search

Back
Top