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

    Adding a Check box to a List box:

    Hi all How can I add a check box to a list box? I need the list box to ahve 2 columns, one with the names of tables and the other column with a check box, so that the user can select multiple tables at a time. Appreciate your time and help Thanks and regards FoxLearner
  2. FoxLearner

    VFP 8.0 Bug:

    Hi All On Feb., 04 I posted a question asking help about the error 2020 I was getting when I tried to pass Arrays by refrence to Com objects. I was trying to pass arrays by reference to a VB DLL, which used to work fine in VFP 6.0/7.0, but in VFP 8.0 it generated an error. The error says...
  3. FoxLearner

    Passing arrays to COM objects by reference: Urgent

    Hi All Yesterday I posted a question regarding error 2020, which deals with passing arrays by referencing to a Com Object in VFP8.0. I am calling a VB DLL's method from VFP7.0 by passing arrays by referencing and it was working fine. I had to compile the APp in VFP8.0 to use XML objects. Then I...
  4. FoxLearner

    URGENT: Class Association Cleared - Error:

    HI All I have a grave problem here. In VFP 8.0 I am calling a method from one of the registered DLLs and I am getting an error. The error occurs at the code line: llRetVal = objManRate.ExecuteRates(@laPlanTab, lnRateTier, lnCallType, THIS.GroupPass(1), .F., THIS.GroupPass(15)...
  5. FoxLearner

    VFP8.0, Group BY - URGENT

    Hi all I am facing a peculiar problem. I have a select statement like this: SELECT sex, coverage, [06] AS agegrp, COUNT(age) AS agecount, agegroup, contract ; FROM CensusTable ; GROUP BY coverage, sex WHERE agegroup = "24" This is working fine in VFP7.0 and 6.0. But in VFP8.0, I am...
  6. FoxLearner

    Probelm with toXML:

    Hi All I am having a problem with the toXML method of XMLAdapter. When I use it, it is truncating the tags to a max length of 10 characters. The original schema has some tags with a size of more than 10. toXML is generating the XML files with all tags truncated to size 10, and funniest thing is...
  7. FoxLearner

    .NEt dataset

    Hi All I need to call a webservice from my VFP App. The webservice expects a .net dataset as a parameter. I have cursors that contain the data and the schema. Can you please tell me how to create .NET Dataset from the cursors and the schema? Thanks and Regards FoxLearner
  8. FoxLearner

    XML

    Hi All Can any one tell me how to generate a single XML document from multiple cursors? I need to call a webservice with the following examples of xml schema and xml document. The schema is something like this: *********************** <?xml version=&quot;1.0&quot; standalone=&quot;yes&quot;?>...
  9. FoxLearner

    WebService - Urgent Please.

    Hi all I am absolutely new to COM. I wanted to register a webservice. For this purpose I created a new project, with a class called &quot;MyWebService&quot; based on teh _Webservice class. When I try to build dll, I get an error &quot;Cannot build a DLL without OLE public class&quot;. Can you...
  10. FoxLearner

    X&lt;LAdapter, String Fields:

    Hi All I am new to use XMLAdapter. I just started to paly with it, as we are going to use it in the next version of my project. I see that whenever I use toCursor() method, the &quot;string&quot; fields in the schema are converted to &quot;memo&quot; fields in the cursor. Datetime, boolean and...
  11. FoxLearner

    Grid Color/Font Bold:

    Hi All I have a grid showing different plans for a customer. Only one of them is Current Plan. My users requested me show the row which shows the current plan to be of Different color or shown in Bold Font. Can anyone tell me how to do it please? FoxLearner
  12. FoxLearner

    ComboBox and Array

    Hi One of my combobox's rowsourcetype is 5(Array). It works fine, except that when clicked, the control is always at the last element of the array. How can I make it to show the first element of the array? Thanks and regards FoxLearner
  13. FoxLearner

    Using Excel for Reports:

    Hi My client asked me to generate the reports in Excel. Now the reports are generated in VFP reports(frx). Can someone please tell me how to do this? I have 7 different reports for 7 regions. Is it possible to generate the reports in one Excel book, with 7 sheets? Thanks and regards FoxLearner
  14. FoxLearner

    Federal Tax ID:

    Hi Did any of you do validations for a Federal Tax Id? If so can I use/see the code for the validation? Thnaks and Regards FoxLearner
  15. FoxLearner

    Urgent: Select doesn't like variables:

    Hi all I got a problem all of a sudden. Select statements in my code doesn't like variables any more. For example: LOCAL lcCursor, loTable lcCursor = SUBSTR(SYS(2015), 3, 10) SELECT * FROM (tcTable) ; ORDER BY effdtereq DESC, prop_id DESC ; INTO CURSOR (lcCursor) It has been working for...
  16. FoxLearner

    Pasting a Picture to clip board - URGENT.

    Hi I am working on mail merge. I am opening a word template and merging text from a cursor(fields) into the word template to make a letter. However, I have a prbolem with a General field in the cursor where a logo is stored. I can't insert that in to the word document. Is there a way I can...
  17. FoxLearner

    Problem with &quot;Create cursor..&quot;

    Hi all I am getting an error message &quot;Syntax Error&quot; when I use the create cursor command. The line where I get this error is: Create Cursor curMyCursor from Array aMyArray The array aMyarray exists and is available. I can see all the elements and their values in the Debugger. Would...
  18. FoxLearner

    Help With PDF files- URGENT:

    Hi All I posted a question yesterday about outlook - access denial. The actual problem is I generate reports in pdf format using Amyuni pdf converter. I need to attach an instruction document which is in PDF format. I thought I can use outlook and attach the report and instructions together to...
  19. FoxLearner

    OutLook- Access Denied problem- Urgent

    Hi all Irun my App on Citrix server. When I use the command loApp = CREATEOBJECTEX(&quot;outlook.Application&quot;,lcComputerName) I am getting an error: &quot;OLE error code oX80070005: Access Denied&quot; Can some one tell me where look for and what may be the reason? Thanks and Regards...
  20. FoxLearner

    Combo Box: Urgent

    Hi All I have a combobox with 2 columns, optCode, optDesc. The values are liek this: optcode optDesc 1 Employee 2 Empl. & Spouse 3 Empl. & Child 4 Family I want the combo box to display optDesc values like Employee/Emplo. & Spouse ... I bound the column 2...

Part and Inventory Search

Back
Top