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: FoxLearner
  • 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

    Craig Thanks for your reply and time. However, would you please explain it a little more? I couldn't follow. Thanks FoxLearner
  6. 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...
  7. 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...
  8. 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
  9. FoxLearner

    XML

    Mike Thanks a lot for your time and help. I just got VFP8.0. After looking briefly, I got an idea. Let me know what you think whether feasible or not. How about using the XMLAdapter object and use the table collection to assign the cursor and then use toXML() method to get the XML files? What I...
  10. FoxLearner

    XML

    Mike Thanks a lot. But could you please tell me just in a line or two, what all these procedures are doing? It is really confusing. Thanks and Regards FoxLearner
  11. 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;?>...
  12. FoxLearner

    WebService - Urgent Please.

    Mike Thanks a lot. FoxLearner
  13. 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...
  14. 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...
  15. FoxLearner

    Grid Color/Font Bold:

    Brian I did that before I used this code. But for some reason it didn't work. I found some thing in the Knowledge base saying that if the grid contains a field where the sparse property is set to .F., it raises errors for DynamicBackColor/ForeColor/Font.. properties. I used IIF(isCurrent =...
  16. FoxLearner

    Grid Color/Font Bold:

    Ramani I used your code. Here is how I used it. *************** LOCAL lnRowNum SELECT curRatings SET DELETED ON GO TOP LOCATE FOR isCurrent = .T. lnRowNum = RECNO() WITH THIS .SetAll(&quot;DynamicBackColor&quot;,IIF(RECNO() = lnRowNum,[RGB(223,225,138)],[RGB(255,255,192)]),&quot;COLUMN&quot;)...
  17. FoxLearner

    Grid Color/Font Bold:

    Thanks you very much! FoxLearner
  18. 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
  19. FoxLearner

    ComboBox and Array

    Thanks all fo you. I tried THIS.ListIndex = 1 in the Init event, but it didn't work. I used in the Load event and it worked. Thanks once again. FoxLearner
  20. FoxLearner

    Pasting a Picture to clip board - URGENT.

    Thank you very much.

Part and Inventory Search

Back
Top