<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://allfaq.org/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>FoxPro</title><link>http://allfaq.org/forums/8.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Problem using BSTR SafeArrays in VFP</title><link>http://allfaq.org/forums/thread/355845.aspx</link><pubDate>Sat, 29 May 2010 02:15:12 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355845</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355845.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355845</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   My VFP application uses a C++ dll that exposes functions which need BSTR SafeArrays to be passed as arguments.&lt;br /&gt;&lt;br /&gt;The problem with my code is that, the task manager shows a memory increase soon after I create a safe array but it does not show a decrease in mem usage after destroying it. This results in a memory leak.&lt;br /&gt;&lt;br /&gt;This code is frequented almost a million times during a batch process and the VM memory usage reaches ~2GB at some point and it results in a crash.&lt;br /&gt;&lt;br /&gt;I tried SYS(3050), SYS(1104), SetProcessWorkingSetSize() etc but VM size did not decrease.&lt;br /&gt;&lt;br /&gt;I am pasting my code below with all the required details. Please help me where I am missing a memory leak here. :((&lt;br /&gt;&lt;br /&gt;&lt;div class="codeSnippet"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="lineNumbers"&gt;&lt;pre&gt;1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
&lt;/pre&gt;&lt;/td&gt;&lt;td class="codeBody"&gt;&lt;pre id="codeSnippet675290" class="notpretty"&gt;	* laArray represents a singly dimensioned FoxPro array with all text (STRING)
	* array elements.  These might represent location argument values for a new
	* RMICADIF entry point
	LOCAL ARRAY laArray[30]
	LOCAL lpSafeArray AS INTEGER, loErr AS EXCEPTION
	LOCAL ARRAY laAddress[30]
	
	FOR i = 1 TO 30
		laAddress[i] = -1
	ENDFOR

	* Set some sample text values that can be examined or logged in the TestDLL.dll
	* ArrayFunction entry point
	laArray[1]  = &amp;quot;sample strings&amp;quot;
	&amp;lt;&amp;gt;
	laArray[30] = &amp;quot;sample strings&amp;quot;
	
                     lpSafeArray = SafeArrayBSTRAllocatePopulate(@laArray, 0, @laAddress)

	* Note: lpSafeArray will be NULL if the SafeArray could not be created
	IF !ISNULL(lpSafeArray) AND lpSafeArray # 0
                             
 	       * Now deallocate the memory for the SafeArray
	       =SafeArrayDeAllocate(@lpSafeArray)
                            
                            * Just a precaution
	      lpSafeArray = .NULL.
	ENDIF	
      RELEASE ALL LIKE laAddress
      laAddress = .NULL.

FUNCTION SafeArrayBSTRAllocatePopulate
	LPARAMETERS taArrayAlloc, tnLowerBound, taPointers
                     EXTERNAL ARRAY taPointers
LOCAL nNumElements, psaPtr AS INTEGER , crgsaBoundsStruc, nrgIndex, uElement, i, ;
	nSizeOfElement, loErr AS EXCEPTION

nNumElements = ALEN(taArrayAlloc)

*  Default lower bound of array to 0, to make a zero-indexed array
IF VART(tnLowerBound) # &amp;#39;N&amp;#39;
tnLowerBound = 0
ENDIF

* Allocate a SafeArray to be filled later;  this creates the header and
* the indirection table used for further construction
crgsaBoundStruc = NumToDWORD(nNumElements) + NumToDWORD(tnLowerBound)
psaPtr = SafeArrayCreate(VT_BSTR, SINGLE_DIMENSION_ARRAY, crgsaBoundStruc)

* Success?
IF psaPtr = 0
	*  Unable to create the SafeArray
	RETURN NULL
ENDIF

*  Construct each element to add into the SafeArray
FOR i = 1 TO nNumElements
	nrgIndex = i - 1
	nSizeOfElement = 0
	* Convert a copy of the FoxPro array element to ANSI text, then to
	* double-byte, and then to its equivalent UNICODE for insertion into
	* the BSTR SafeArray
	uElement = STRCONV(STRCONV(taArrayAlloc[i], 1), 5) + CHR(0) + CHR(0)
	taPointers[i] = CreateBSTRString(@uElement)
	IF taPointers[i] &lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;I m in dire need of some light!! :((&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>GPG Command Line - RUN Issue</title><link>http://allfaq.org/forums/thread/355843.aspx</link><pubDate>Sat, 29 May 2010 02:14:48 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355843</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355843.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355843</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   I submitted this question once before a few minutes ago just as the forum site went into &amp;quot;Maintenance&amp;#39; mode so I am guessing that the first submittal got lost in the ether.&lt;br /&gt;&lt;br /&gt;Anyway, I asked this question on another forum a little more than a week ago, and have yet to get THE answer so now its time to try Expert&amp;#39;s Exchange.....&lt;br /&gt;&lt;br /&gt;OS:  Win XP Pro&lt;br /&gt;VFP:   VFP7&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t know if anyone of you has had to use PGP/GPG encryption on files, but I am running into an issue which is baffling me for the time being.&lt;br /&gt;&lt;br /&gt;I HATE PGP since it typically takes over an entire workstation whether during the installation you configure it NOT to or not.  Consequently my first choice is to get GPG working.&lt;br /&gt;&lt;br /&gt;For those not familiar with it  GPG  is the FREE, open source version of PGP encryption.&lt;br /&gt;&lt;br /&gt;And, since we are working in Windows, we are using GPG4Win which is a Windows GUI to the GPG.EXE application.  I have been manually running it for about a year or more now and it has been working fine, but a client now wants files delivered on a more frequent timeline so I want to automate things within a VFP application.&lt;br /&gt;&lt;br /&gt;Not having found a GPG ActiveX, I am running the GPG.EXE (from GPG4Win) with a Command line string.&lt;br /&gt;&lt;br /&gt;That in itself has been a lengthy effort with a GREAT deal of assistance from an individual in this site&amp;#39;s Encryption forum, but now the command string that I have is working as long as I manually type it into a DOS window.&lt;br /&gt;&lt;br /&gt;But when I try to execute it with a VFP RUN command, it will not execute.&lt;br /&gt;&lt;br /&gt;NOTE - the command string is 210 characters long if I shorten the path references wihtin the string to DOS 8 character abbreviations.   If I do not shorten the path references it is a good bit longer.&lt;br /&gt;&lt;br /&gt;I have tried executing the command string itself&lt;br /&gt;   RUN cGPGCommand&lt;br /&gt;And I have tried writing the command string into a BAT file and then executing it&lt;br /&gt;   RUN GPGCommand.bat&lt;br /&gt;Nothing I do seems to work.&lt;br /&gt;&lt;br /&gt;The DOS black screen flashes on &amp;#39;execution&amp;#39;, but when I look for the resultant output file, it does not exist.&lt;br /&gt;&lt;br /&gt;The command string has 2 parts separated by a PIPE character.   The first part contains the GPG Passphrase necessary to validate the execution.  The second part has the remainder the command string (the bulk of it) and it utilizes the passphrase from before the PIPE character.   The reason for that format was determined to be necessary by the lengthy work described above to get a working command string at all.&lt;br /&gt;NOTE - to repeat, this runs just fine when manually typed at the DOS prompt.&lt;br /&gt;&lt;br /&gt;In order to determine what did or did not work, prior to running a test, I delete the output file (if it exists) and then after execution look for it again.   When I type the command string into the DOS window, things work just fine and the output file is created.   When I attempt to run the exact same command string with either the VFP RUN command or as part of the BAT file, the output file never gets created.&lt;br /&gt;&lt;br /&gt;Any ideas?&lt;br /&gt;&lt;br /&gt;Your advice/suggestions would be greatly appreciated.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;JRB-Bldr&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>FoxPro 2.6 for Windows and JKEY 3rd party add on</title><link>http://allfaq.org/forums/thread/355579.aspx</link><pubDate>Fri, 28 May 2010 09:15:28 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355579</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355579.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355579</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   Where can I find a copy of JKEY for FoxPro for Windows.&lt;br /&gt;I was told that it is freeware and can be down loaded from&lt;br /&gt;the Internet A web address would be greatly appreciated&lt;br /&gt;if one exists&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>VFP ODBC driver allows insert/update/delete not select (file 'table.dbf' does not exist.)</title><link>http://allfaq.org/forums/thread/355409.aspx</link><pubDate>Fri, 28 May 2010 05:00:33 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355409</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355409.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355409</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   scenario 1:&lt;br /&gt;conn.open(&amp;quot;Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=\\dbserver\data;Exclusive=No;Null=No;Deleted=Yes;&amp;quot;)&lt;br /&gt;&lt;br /&gt;this connection string allows me to insert/update/delete from MyTable.dbf in the SourceDB through ASP.  When I try to use this connection for a SELECT statement I get this error:&lt;br /&gt;&lt;br /&gt;[Microsoft][ODBC Visual FoxPro Driver]File &amp;#39;MyTable.dbf&amp;#39; does not exist.&lt;br /&gt;&lt;br /&gt;scenario 2:&lt;br /&gt;conn.open(PROVIDER=VFPOLEDB.1;DATA SOURCE=//192.168.0.1/data;&amp;quot;)&lt;br /&gt;&lt;br /&gt;this connection string allows me to insert/update/delete AND select.  The problem with this driver is the INSERT statement won&amp;#39;t allow inserts when all fields are not specified.  For example if MyTable.dbf contains 2 fields -- &amp;#39;field1, field2&amp;#39;  --  my insert statement could look like this &amp;quot;INSERT into MyTable (field1) values(&amp;#39;test&amp;#39;)&amp;quot; The following error would then return:&lt;br /&gt;&lt;br /&gt;Microsoft OLE DB Provider for Visual FoxPro error &amp;#39;80004005&amp;#39; &lt;br /&gt;FIELD field2 doesn&amp;#39;t not accept &amp;#39;NULL&amp;#39; values&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve tried using the attribute &amp;#39;Null=No;&amp;#39; in scenerio2 connection string but apparently that is not a valid attribute of the Provider.&lt;br /&gt;&lt;br /&gt;The question is, What combination(s) of driver and attributes should be used to successfully insert/update/delete and select free tables from a VFP db on a &amp;#39;non-local&amp;#39; drive?  &lt;br /&gt;&lt;br /&gt;Keep in mind:&lt;br /&gt;&lt;br /&gt;1)  inserts work in scenerio2 they just don&amp;#39;t allow for Null fields to be left out of the insert statement.  (I need to work because of the current insert statements used).&lt;br /&gt;&lt;br /&gt;2)  select statements won&amp;#39;t work in scenerio1 because the driver can&amp;#39;t find the table specified in the SQL.  But if I do insert/update/delete SQL statements the driver has no problem finding the table and performing the SQL.&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Why chr(219) appears differently in Visual FoxPro under certain conditions ?</title><link>http://allfaq.org/forums/thread/355099.aspx</link><pubDate>Fri, 28 May 2010 02:06:05 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355099</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355099.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355099</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   Hi Experts !&lt;br /&gt;&lt;br /&gt;Coukd you explain why under certain and don&amp;#39;t undrestood conditions the character chr(219) appears correctly in a thermometer (a black retangle) and under other conditions as a  Û  ?&lt;br /&gt;&lt;br /&gt;Thanks in advance.&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>copy table data to textfile without header</title><link>http://allfaq.org/forums/thread/355081.aspx</link><pubDate>Thu, 27 May 2010 18:50:17 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355081</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355081.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355081</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   When I try to copy one table data in foxpro 2.6 from one table to a test file , it includes table header&lt;br /&gt;information in first row, please provide code to stop it.  &lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Move cursor to next row within grid box at last column</title><link>http://allfaq.org/forums/thread/355050.aspx</link><pubDate>Thu, 27 May 2010 11:57:36 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:355050</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/355050.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=355050</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   hi,&lt;br /&gt;&lt;br /&gt;I have a grid box with several columns. I like the cursor to move to next row whenever an enter key or the tab key is pressed instead of return to the first column on the same row.  &lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>How to send data to Outlook calendar from VFP and update…</title><link>http://allfaq.org/forums/thread/354533.aspx</link><pubDate>Wed, 26 May 2010 07:45:56 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:354533</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/354533.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=354533</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   Hi there,&lt;br /&gt; If anyone knows,&lt;br /&gt; How to send calendar information (appointments or meetings etc...) from Visual FoxPro application by Email to Outlook, and then to be able to “set up” or “update” the related “meeting” or “appointment” on Outlook calendar of Email receiver…&lt;br /&gt;&lt;br /&gt;It is urgent!&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Why Visual FoxPro 9 slows down process compared with IDE ?</title><link>http://allfaq.org/forums/thread/354048.aspx</link><pubDate>Tue, 25 May 2010 19:56:06 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:354048</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/354048.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=354048</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   Hi Experts&lt;br /&gt;&lt;br /&gt;Could you point out the reason and solution why VFP9.0 executable slows down when compared with the same processs using the IDE  ? &lt;br /&gt;(I&amp;#39;ve put a thermomether and is remarkable the time difference  between  the two processes)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>foxpro 2.6 data table not apending</title><link>http://allfaq.org/forums/thread/353926.aspx</link><pubDate>Tue, 25 May 2010 13:25:26 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:353926</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/353926.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=353926</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   When I try to append a dbf file using appe command to upload data from text file, command run in command window, but when i create exe  &amp;amp; run it system gives message that &amp;quot; exclusive open of file is required&amp;quot;  &amp;amp; when I select ignore option , system gives message &amp;quot; cannot write to a read only file&amp;quot;&lt;br /&gt; &lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Visual foxpro expression (difference of time)</title><link>http://allfaq.org/forums/thread/353775.aspx</link><pubDate>Tue, 25 May 2010 08:52:44 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:353775</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/353775.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=353775</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   trying to write an expression that will give me the difference of two time fields.  Each time field is formatted HH:MM:SS&lt;br /&gt;&lt;br /&gt;roll time: 13:25:45&lt;br /&gt;arrival time: 13:28:46&lt;br /&gt;&lt;br /&gt;Need to calculate the difference of these two times.  This is a visual foxpro reporting tool &lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Need something to Copy Protect my Visual FoxPro 5.0 applications</title><link>http://allfaq.org/forums/thread/353487.aspx</link><pubDate>Tue, 25 May 2010 04:37:00 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:353487</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/353487.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=353487</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   I am writing and installing my applications and I need something to copy protect my applications. After installing the runtime, my EXE file and data tables, I need something to protect it from anyone to copy the directory or directories to another PC and be able to run it without some coding or something. I do not simply want to hide files because it would still be easy for a computer person to figure this out. I need something which can read something from the PC&amp;#39;s hard disk and writing it to some table or file in my application so that if it is copied to another PC it could never be the same and not be able to run. If the computer crashes and the user needs to reinstall, they will need to call me to give them a code or something to reinstall.&lt;br /&gt;&lt;br /&gt;Any ideas?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>FoxPro Debug problem</title><link>http://allfaq.org/forums/thread/351337.aspx</link><pubDate>Fri, 21 May 2010 15:06:16 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:351337</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/351337.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=351337</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   I&amp;#39;m trying to resurrect my FoxPro programming environment after 10+ years. Working on Windows XP.  I used to work on 6.0, now I&amp;#39;m working with 9.0.  Pulled up a copy of the project from the backup file.  I am able to do a build without errors, but when I run the project.exe file I get an error message&lt;br /&gt;&lt;br /&gt;&amp;quot;Class name is invalid&amp;quot;&lt;br /&gt;&lt;br /&gt;There are no hints. How do I chase this down?&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>decoding a scanner with VPF9</title><link>http://allfaq.org/forums/thread/351107.aspx</link><pubDate>Fri, 21 May 2010 07:34:54 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:351107</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/351107.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=351107</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   I am scanning in using a hand held scanner into Visual FoxPro 9 bar codes using Code 39 font.  I need to know how to decode the bar code so I can search the database for it.&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>SSH login is failing with permission denied error in AIX 5.3 ML08</title><link>http://allfaq.org/forums/thread/350631.aspx</link><pubDate>Fri, 21 May 2010 01:36:16 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:350631</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/350631.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=350631</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   I have a AIX 5.3 ML08 server. When I try to login with SSH, both as root user and non-root user, it fails with permission denied error message.&lt;br /&gt;&lt;br /&gt;Below is the output,&lt;br /&gt;ssh -l user etr6506l3-aix93.ca.com&lt;br /&gt;user@etr6506l3-aix93.ca.com&amp;#39;s password:&lt;br /&gt;Permission denied, please try again.&lt;br /&gt;user@etr6506l3-aix93.ca.com&amp;#39;s password:&lt;br /&gt;Permission denied, please try again.&lt;br /&gt;user@etr6506l3-aix93.ca.com&amp;#39;s password:&lt;br /&gt;Received disconnect from 155.35.7.36: 2: Too many authentication failures for user&lt;br /&gt;&lt;br /&gt;If I look into the syslog messages file, the following PAM related error messages are observed,&lt;br /&gt;&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:debug sshd: PAM: pam_authenticate: error Authentication failed&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:debug sshd: PAM: pam_authenticate: error Authentication failed&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:info sshd[274440]: Failed password for user from 155.35.7.36 port 32836 ssh2&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:info sshd[274440]: Failed password for user from 155.35.7.36 port 32836 ssh2&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:info syslog: ssh: failed login attempt for user from etr6506l3-aix93.ca.com&lt;br /&gt;May 14 07:08:01 etr6506l3-aix93 auth|security:info syslog: ssh: failed login attempt for user from etr6506l3-aix93.ca.com&lt;br /&gt;&lt;br /&gt;Could you please help me out in resolving this problem.&lt;br /&gt;&lt;br /&gt;The sshd_config file looks as below,&lt;br /&gt;&lt;div class="codeSnippet"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="lineNumbers"&gt;&lt;pre&gt;1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
&lt;/pre&gt;&lt;/td&gt;&lt;td class="codeBody"&gt;&lt;pre id="codeSnippet657262" class="notpretty"&gt;
#       $OpenBSD: sshd_config,v 1.73 2005/12/06 22:38:28 reyk Exp $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options change a
# default value.

#Port 22
Protocol 2
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

# HostKey for protocol version 1
# HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key

# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 768

# Logging
# obsoletes QuietMode and FascistLogging
SyslogFacility AUTH
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
MaxAuthTries 3

#RSAAuthentication yes
#PubkeyAuthentication yes
#AuthorizedKeysFile     .ssh/authorized_keys

# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no
# similar for protocol version 2
#HostbasedAuthentication no
# Change to yes if you don&amp;#39;t trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don&amp;#39;t read the user&amp;#39;s ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes

# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no

# Change to no to disable s/key passwords
#ChallengeResponseAuthentication no

# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

# Set this to &amp;#39;yes&amp;#39; to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication mechanism.
# Depending on your PAM configuration, this may bypass the setting of
# PasswordAuthentication, PermitEmptyPasswords, and
# &amp;quot;PermitRootLogin without-password&amp;quot;. If you just want the PAM account and
# session checks to run without PAM authentication, then enable this but set
# ChallengeResponseAuthentication=no
UsePAM yes

#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost no
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no

# no default banner path
Banner /some/path

# override default of no subsystems
Subsystem       sftp    /usr/sbin/sftp-server&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>why appear this error</title><link>http://allfaq.org/forums/thread/350237.aspx</link><pubDate>Thu, 20 May 2010 22:09:33 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:350237</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/350237.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=350237</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   when i write this code line  &lt;br /&gt;loOutlook = CREATEOBJECT(&amp;quot;Outlook.Application&amp;quot;) &lt;br /&gt; appears the error in attached&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>ODBC set up for FoxPro 9</title><link>http://allfaq.org/forums/thread/349697.aspx</link><pubDate>Thu, 20 May 2010 17:44:30 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:349697</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/349697.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=349697</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   I need a little advice about setting up a ODBC connection to my server.&lt;br /&gt;I am working on a Vista system connected to a small office network.  Working  with the ODBC Data Source Administrator  I get a message to first download the driver lates driver.  I check in the Windows system directory and there is a VFPODBC.dll file.  I went online and downloaded a VFPODBC.msm file which is designed to be included in the VFP application release.  This was saved in the VFP classes folder.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I found a VFPODBC.TXT file in the Windows System folder which seems to be the instruction on how to install the driver.  It says to run the SETUP.EXE file to install the driver, but I don&amp;#39;t know where to find the setup file.&lt;br /&gt;&lt;br /&gt;A llitle help Please.&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>extract</title><link>http://allfaq.org/forums/thread/349616.aspx</link><pubDate>Thu, 20 May 2010 13:18:06 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:349616</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/349616.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=349616</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   Hi&lt;br /&gt;we have a field called desc and andother called mfgpn.We would like to extract the part number from desc to mfgpn. The part number will start with a # and end with a space.&lt;br /&gt;eg&lt;br /&gt;                        desc                                                   mfgpn&lt;br /&gt;VALVE-QC     #911505     WELLS                          911505&lt;br /&gt;VALVE-ACTION #68467     ACTION                         68467&lt;br /&gt;VALVE, FC    #PCCM1600S PARKER                      PCCM1600S&lt;br /&gt;&lt;br /&gt;Thanks&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Refresh a Cursor?</title><link>http://allfaq.org/forums/thread/349390.aspx</link><pubDate>Thu, 20 May 2010 07:26:01 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:349390</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/349390.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=349390</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   I often open several instances of the same table when I want to relate the table to a parent and be able to move the record pointer freely for a lookup. The problem is that if I append a new record in one cursor  it is not immediately visible in the other cursor for the lookup. Is there a way to have a cursor refresh its data from disc periodically?&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Program to get the results as in this Excel Attachment</title><link>http://allfaq.org/forums/thread/348059.aspx</link><pubDate>Sun, 16 May 2010 10:12:22 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:348059</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/348059.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=348059</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   Attached is a query of what I want it to look like&lt;br /&gt;&lt;br /&gt;the three color headers are for each company/location&lt;br /&gt;&lt;br /&gt;the customer numbers are different to each location but the phone numbers are what I want to match them on.&lt;br /&gt;&lt;br /&gt;is this a like a 3 query Join?&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>How do I identify Menu item click in Visual Foxro 9.0?</title><link>http://allfaq.org/forums/thread/347977.aspx</link><pubDate>Sun, 16 May 2010 06:10:28 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:347977</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/347977.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=347977</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   Hi,&lt;br /&gt;&lt;br /&gt;I have a VFP application in which I want to implement auto-logoff feature.&lt;br /&gt;&lt;br /&gt;I used BINDEVENT() function to handle this. I created a eventhandler class in whose Init() i captured WM_LBUTTONUP, WM_RBUTTONUP and WM_KEYUP events. My last activity timer will be reset in the delegate method every time I get any of the above 3 windows events.&lt;br /&gt;&lt;br /&gt;Now I want to reset a variable every time I select an item from menu.&lt;br /&gt;&lt;br /&gt;WM_MENUSELECT is of no use because it fires even if I mouse hover over the items. What i really need to capture is a menu item selection.&lt;br /&gt;&lt;br /&gt;WM_COMMAND seemed to solve my problem until I recognized that it was fired even when I click on &amp;#39;Yes/No&amp;#39; buttons on the message box. &lt;br /&gt;&lt;br /&gt;How do I capture a menu select?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Memo Field Printing VFP 9</title><link>http://allfaq.org/forums/thread/347662.aspx</link><pubDate>Sun, 16 May 2010 02:05:48 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:347662</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/347662.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=347662</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="pBody postableBody"&gt;
   I have a report that I have created in VFP 9. &lt;br /&gt;&lt;br /&gt;I have two groups in the report. &lt;br /&gt;1st group is grouped by client_num&lt;br /&gt;2nd group is grouped by year&lt;br /&gt;&lt;br /&gt;In the Group Footer of the 2nd group I have the year and a notes field.&lt;br /&gt;&lt;br /&gt;The notes field is a memo field. &lt;br /&gt;&lt;br /&gt;I have found that a single field on the report will only print 254 characters so I have broken down the notes memo field by using the mline() function. Please tell me if there is another work around that works better.&lt;br /&gt;&lt;br /&gt;Here is what I have in the expression field:&lt;br /&gt;IIF(!empty(allt(mline(qryClient.prod_cont_notes,1))),mline(qryClient.prod_cont_notes,1),&amp;quot;&amp;quot;)&lt;br /&gt;* Note there are 20 fields like this - replacing the number accordingly for each one.&lt;br /&gt;&lt;br /&gt;In the Print When tab I have checked the &amp;quot;Remove line if blank&amp;quot; check box. &lt;br /&gt;&lt;br /&gt;The Print Only when expression is true is:&lt;br /&gt;!empty(qryClient.prod_cont_notes) and thisform.chkPrintContNotes.value = .t.&lt;br /&gt;* Note: There is a check box on the form that the user can check to print notes this is the thisform.chkPrintContNotes.value.&lt;br /&gt;&lt;br /&gt;If I just have one field for the notes on the report the report prints in 3 pages. &lt;br /&gt;* With this layout the report prints without any white space before the notes. &lt;br /&gt;&lt;br /&gt;If I have all 20 fields the report prints 7 pages. &lt;br /&gt;* With more than one field there is a lot of white space before the notes which seems to even kick it over to a new page most of the time, leaving the notes to print on the next page. In fact I have found that if I add around 10 fields it works properly but after the band height reaches a certain size it doesn&amp;#39;t seem to work properly. I think that the problem really lies in the band not resizing properly but i am not sure. I have done this type of thing in VFP 6 and VFP 7 in the past without a problem. It could be a bug in VFP 9. I just need a work around. &lt;br /&gt;&lt;br /&gt;Any ideas would be greatly appreciated.  &lt;br /&gt; &lt;div class="s snhF5FF expNoHeader postableAttach"&gt;&lt;table class="h"&gt;&lt;tr&gt;&lt;td class="l"&gt;&lt;/td&gt;&lt;td&gt; &lt;/td&gt;&lt;td class="r"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="bl"&gt;&lt;div class="br"&gt;&lt;div class="bbg"&gt;&lt;div class="empty"&gt;&lt;/div&gt;&lt;div class="bc"&gt;&lt;div class="attachment"&gt;&lt;div class="fileInfo"&gt;&lt;a class="filename" title="No Viruses Detected" href="http://filedb.experts-exchange.com/incoming/2010/05_w20/306088/contrib-rpt.FRX" target="_blank"&gt;contrib-rpt.FRX&lt;/a&gt; &lt;span class="fileSize"&gt;(26 KB) &lt;/span&gt;&lt;a class="attachmentDetails"&gt;(File Type Details)&lt;/a&gt; &lt;/div&gt;&lt;div class="description"&gt;Contribution Report FRX&lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="empty"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;table class="f"&gt;&lt;tr&gt;&lt;td class="l"&gt;&lt;/td&gt;&lt;td&gt; &lt;/td&gt;&lt;td class="r"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;div class="s snhF5FF expNoHeader postableAttach"&gt;&lt;table class="h"&gt;&lt;tr&gt;&lt;td class="l"&gt;&lt;/td&gt;&lt;td&gt; &lt;/td&gt;&lt;td class="r"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="bl"&gt;&lt;div class="br"&gt;&lt;div class="bbg"&gt;&lt;div class="empty"&gt;&lt;/div&gt;&lt;div class="bc"&gt;&lt;div class="attachment"&gt;&lt;div class="fileInfo"&gt;&lt;a class="filename" title="No Viruses Detected" href="http://filedb.experts-exchange.com/incoming/2010/05_w20/306090/contrib-rpt.txt" target="_blank"&gt;contrib-rpt.txt&lt;/a&gt; &lt;span class="fileSize"&gt;(45 KB) &lt;/span&gt;&lt;a class="attachmentDetails unexpected"&gt;(Possible File Type Mismatch)&lt;/a&gt; &lt;/div&gt;&lt;div class="description"&gt;Contribution Report FRT - Just rename it to contrib_rpt.frt &lt;/div&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="empty"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;table class="f"&gt;&lt;tr&gt;&lt;td class="l"&gt;&lt;/td&gt;&lt;td&gt; &lt;/td&gt;&lt;td class="r"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>Calling a Sql Server 2005 Stored Procedure from Visual Foxpro</title><link>http://allfaq.org/forums/thread/347660.aspx</link><pubDate>Sun, 16 May 2010 02:05:31 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:347660</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/347660.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=347660</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   Hello,&lt;br /&gt;&lt;br /&gt;My question involves calling a Sql Server 2005 stored procedure from Visual Foxpro 6.0.  I have no problem calling the stored procedure and executing it when the stored procedure has no parameters.  When I attempt to call a stored procedure that has parameters it is not working.&lt;br /&gt;Below is the following Visual Foxpro 6.0 code I am using:&lt;br /&gt;&lt;br /&gt;ln_handle=SQLStringConnect(&amp;#39;DRIVER={SQL Server};UID=user;PWD=password;APP=Microsoft® Visual FoxPro®;SERVER=unc_server;DATABASE=test_database&amp;#39;)&lt;br /&gt;&lt;br /&gt;lcsql = &amp;quot;exec schema.spStoredProcedure ?lcParameter1, ?lcParameter2, ?lcParameter3&amp;quot;&lt;br /&gt;lnresults=sqlexec(ln_handle, lcsql)&lt;br /&gt;(I have also tried - lcsql = &amp;quot;exec schema.spAnotherStoredProcedure &amp;#39;&amp;quot; + lnOutput1 + &amp;quot;&amp;#39;, &amp;#39;&amp;quot; + lnOutput2 + &amp;quot;&amp;#39;, &amp;#39;&amp;quot; + lnOutput3 + &amp;quot;&amp;#39; &amp;quot; but with no success)&lt;br /&gt;=sqldiscon(ln_handle)&lt;br /&gt;&lt;br /&gt;The sql server stored procedure I am attempting to call (as seen above) has 3 parameters&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Please let me know&lt;br /&gt;Thanks&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>'API Routines'</title><link>http://allfaq.org/forums/thread/347546.aspx</link><pubDate>Sat, 15 May 2010 08:56:49 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:347546</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/347546.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=347546</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   I have VFP 5.0 and VC++ 6.0. I want to build API routine. I can write the code but I don&amp;#39;t know how to compile it. Is any one who can explain it step by step.&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item><item><title>dbase</title><link>http://allfaq.org/forums/thread/347108.aspx</link><pubDate>Sat, 15 May 2010 04:12:50 GMT</pubDate><guid isPermaLink="false">58ea4eb4-77bb-4e6c-8d8b-97e57134a346:347108</guid><dc:creator>microsoft</dc:creator><slash:comments>1</slash:comments><comments>http://allfaq.org/forums/thread/347108.aspx</comments><wfw:commentRss>http://allfaq.org/forums/commentrss.aspx?SectionID=8&amp;PostID=347108</wfw:commentRss><description> &lt;span class="value"&gt;
&lt;span class="questionBody"&gt;
   &lt;br /&gt;Dear experts&lt;br /&gt;&lt;br /&gt;iam using dbase first time iam using dbase first pfoblem is how can i use dbase how can i create  a table in dbase for dbase what i want to install?&lt;br /&gt;i wrote a select query in dbase but i can&amp;#39;t give a checking condition more than one using and it showing error.&lt;br /&gt;please help me to solve this problem&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;
</description></item></channel></rss>