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: Z1
  • Order by date
  1. Z1

    Convert multiple rows to one record or variable

    Thanks rafrancisco, I was using as follows to get my desired result as your web site indicates: DECLARE @CustomerIDs VARCHAR(8000) SELECT @CustomerIDs = ISNULL(@CustomerIDs + ',', '') + [CustomerID] FROM [dbo].[Customers] ORDER BY [CustomerID] PRint @CustomerIDs BUT I have trouble after I...
  2. Z1

    Convert multiple rows to one record or variable

    Thanks George for your help. You have my star for this week.
  3. Z1

    Convert multiple rows to one record or variable

    I have a varible table with one column and multiple row. I want one row with the combination of all rows. Below is the example: E01 E02 E03 Output : E01,E02,E03
  4. Z1

    to print Adobe Files

    Dear Chris, My objective is to print PDFs. Thats all. How I will do it from the application? I able to open the PDF Files from the application but to print I have to use Adobe Print Menu. That is my problem. I donot want to use Adobe Print option. Is there any command from which I can print...
  5. Z1

    to print Adobe Files

    Hi guys, I have thousands of PDF images to print. How can I print the images from VFP Prompt ? Thanks a Lot Z1
  6. Z1

    Scanned Image

    Thanks Chris, We are using VFP Image control by converting into GIF format but it consumed a lot of space. Our volume of scanned images are more than 5 Million and we want save space. I will try with an ActiveX control.
  7. Z1

    Scanned Image

    How can I use "TIF image" on my forms? is it possible? Thanks
  8. Z1

    Returning Values as an Array

    Hello,<br><br>I am trying to pass parameter to a function and wants the value back as an array. Is it possible? <br><br>Here below are codes(partly). <br>Dime l_aParentField(99)<br>l_cField = &quot;MATERIALC&quot;<br>Stor Get_ParentField(l_cField) to l_aParentField<br><br>Function...
  9. Z1

    Add For Clause [in Primary key]

    Hi Robert,<br><br>Thanks for your response.<br><br>I have already tried by adding (), but it still gives me the same error.<br><br><br><br>
  10. Z1

    Add For Clause [in Primary key]

    Hi Robert,<br><br>I was following the MSDN library info for ALTER TABLE where the above syntax was there. Do you think its a bug?<br><br>Thanks for your input.
  11. Z1

    Add For Clause [in Primary key]

    Hi there,<br><br>I want to put not deleted clause on the primary key to ignore deleted rows. Following command is giving syntax errors:<br><br>ALTER TABLE 'MYTABLE' ADD PRIMARY KEY MYKEY TAG MYKEY FOR NOT DELETED<br><br>Please help<br><br><br><br>
  12. Z1

    FAQ

    Hello VFP Users,<br><br>I am looking for the companies who use VFP as their development tool in and around Philadelphia area.&nbsp;&nbsp;<br><br>Please advise, if any source available.<br><br>Thanks
  13. Z1

    To Find Blank Record in a Table

    Hai,<br><br>I am developing an application using <b>VFP6</b>. The DBC which is in use has more 120 table and the no of records varies from 20 to 200,000.The no.of Fields are ranging from 2 to 127. These tables have&nbsp;&nbsp;primary and or candidate index(es). <br><br>As this is a multiuser...
  14. Z1

    Application

    Hello Friends,<br><br>I have developed an application in VFP6 in Window98 environment. When an user with Windows 95 platform try to install my application, could not succeed. What is the problem? Is VFP6 application dependent of Windows Platform?<br><br>Please help. <br><br>Thanks.

Part and Inventory Search

Back
Top