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: *

  1. AMakovoz

    Table size limit

    Is table size limit of 2GB is gonna be dropped any time soon? Any idea when?
  2. AMakovoz

    Changing File Attributes

    I would like to change Read Only attribute of any file programically. Simple solution? Unrelated question: Is 2GB table size limit gonna be changed in the new release of VFP?
  3. AMakovoz

    Enhanced Combo Box

    Thank you, guys! Jon's idea of superimposing controls is smart idea in general.
  4. AMakovoz

    Enhanced Combo Box

    I am looking for a third party ComboBox with the following additoonal features: 1. Multiselect (like in FoxPro intristic ListBox) 2. Change colors or dims individual items Any ideas?
  5. AMakovoz

    FTP Control

    Hello, there! Is there reliable FTP Control? Need to upload files to other party FTP site.
  6. AMakovoz

    Bit manipulation on the string data

    To Jon Hawkins: Thanks for responding. Here what I'm trying to do: Let suppose I have a text field 100 char long (its 800 bits). I want to be able to analyze and modify each bit (i.e. set its value to 0 or 1). A can do it using ASC, CHR, BITxxx functions but it takes forever on the big table. Is...
  7. AMakovoz

    Bit manipulation on the string data

    Is there any easy way to manipulate bits on the string data similar to BITxxx functions used for numeric data?
  8. AMakovoz

    Exporting to Excel-size limit

    Thank you, Jon & Robert, I am using Excel 97 with 64K size limit. The solution I found was to split Export to several sheets with max of 15,000 rows each and then merge them back to one using automation. Initially I programmed it with OLE, but it would take forever to download around 40,000...
  9. AMakovoz

    Exporting to Excel-size limit

    Whenever I try to export to Excel file, it brakes at 16,384 record. Is this a bug or there is a parameter controlling number of records to be exported to Excel. I do not have this problem with other data types (Delimited, for example).
  10. AMakovoz

    combo box problem

    Try to use a smaller font or somehow abbreviate an option name. Good luck!
  11. AMakovoz

    Calling OCX Control

    Hi, Robert. Thats the types I am trying to pass to. A sample code in VB looks like that: <br>objMM.GeocodeAddress(lngEngHandle,txtFirm,txtStreet,status,numCandiates).<br>Thanks for attention.
  12. AMakovoz

    Intristic Grid Control

    Thank you all! Actually, it was my problem: somewhere along the program code I was closing the file and even though I was re-opening it later it apparently screw the grid. Thanks again!
  13. AMakovoz

    How do I insert an excel column?

    Hi, WebRookie!<br>How on earth you get this code? <br>Try this code instead:<br>oleExcel.Range(&quot;C1&quot;).Select&nbsp;&nbsp;(assuming you want to insert a column prior to &quot;C&quot;)<br>oleExcel.Selection.EntireColumn.Insert
  14. AMakovoz

    Calling OCX Control

    I am trying to program MapMarker OCX but whenever a call is made to one of its methods I am getting &quot;Type mismath&quot; error. The parameters types are: Long, Text and integer. The OCX works fine with Visual Basic calls. Why can't I use VFP variables? I don't expect you tried this control...
  15. AMakovoz

    Intristic Grid Control

    Thank you, Jon. I tried this approach before, doesn't work. It looks that any manipulations with the original table effect the initial property settings and the grid look garbled. Any other ideas? Albert
  16. AMakovoz

    Button not dimmed

    Try to disable the button not from within the button's When method (since When is activated only when control is passed to this button) but from Click (or other appropriate event)method of the control which make you decide to Add records. Did I make myself clear?
  17. AMakovoz

    Intristic Grid Control

    Thank you, guys! To answer Jon's question, I am referring to Column width, Column and header fonts, etc properties. One solution could be to save and later restore all set at design time properties but there are too many of them and I am looking for a simpler solution.<br>Thanks again, Albert
  18. AMakovoz

    empty fields in dropdownlist, help

    Better yet, use NumberOfElements property!
  19. AMakovoz

    Intristic Grid Control

    Whenever I programically change RecordSource propertity of VFP Grid Control all my initial setting for the control are gone. I need to be able to show different tables of the exact same structure based on the user's choice. What should I do?

Part and Inventory Search

Back
Top