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 SkipVought 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. 738262

    xHarbour DBF AND PROCEDURES

    Hello everyone, Does anyone know if xharbour is cabable of executing a function/procedure whenever you access a dbf file? Thank you Nikos
  2. 738262

    CISCO VPN PROBLEM

    Hello, I have a question regarding vpn. Is vpn established one-way? I just completed the configuration of a cisco 851 router and a soho91. the vpn is only established from the side of the soho91 router. after that i can ping both router from both sites. Has anyone seen the behaviour before...
  3. 738262

    EDITBOX LOOSES SCROLLBAR

    Yes I have SP1 installed. This behaviour occurs only in the EXE.
  4. 738262

    EDITBOX LOOSES SCROLLBAR

    Hi all I am using vfp7. I am using an EditBox in a form which has a scrollbar. If I Execute SET RESOURCE OFF then the editbox looses the scrollbar. Has anyone seen this behaviour before? Thank You
  5. 738262

    found() & seek()

    Hello monikai SEEK() is the equivalent of issuing a SEEK command and then FOUND(). example. SEEK something if FOUND() do something endif or if seek(something) do something endif
  6. 738262

    Evaluate 'DO' cmd set to variable?

    Try the Following _vfp.docmd(lcDoPrg)
  7. 738262

    API - Drives

    Hi Try The following. LOCAL oFileSystem as Scripting.FileSystemObject LOCAL odrv as Scripting.Drive oFileSystem=CREATEOBJECT("Scripting.FileSystemObject") FOR EACH oDrv IN oFileSystem.Drives MESSAGEBOX(odrv.DriveLetter+": "+TRANSFORM(odrv.DriveType)) NEXT
  8. 738262

    Grid question.

    Hi all, I need your help on grid control. I have a grid on a form with the AllowAddNew set to .t. I have two questions. 1. How can I add a new record without having to be positioned on the last record in the grid and pressing the down arrow? Just by clicking with the mouse on the row after the...
  9. 738262

    Limit String Input Length

    Hi Look at the MaxLength property of textbox
  10. 738262

    how to alter Indexes expression using code

    Hi Try this use myTable sTemp=progressbar(field1) index on &sTemp tag tag1 function progressbar lparameters cField1 wait window at 10,10 'indexing '+transform(recno())+' of '++transform(reccount()) return cField1 endfunc
  11. 738262

    ACTIVE X CONTROL AND VFP7

    Hi all. I have the following problem and I would like your help. I have deleloped an active x control using ATL 3.0 My problems are two: 1. Even though I have read that the native foxpro controls are windowless, If I make my windowless I get a fatal exeption C0000005 Access violation. 2. I...
  12. 738262

    How to hide Read Only message at grid?

    Hi warik. See SET NOTIFY command
  13. 738262

    Spinner

    You can use a spinner. After dropping the control on the form, use the following values: Increment: 0.5 SpinnerLowValue: 0.5 SpinnerHighValue: whatever value=0.5 Then put this code in the InteractiveChange event: IF this.Value>0.5 this.Increment=1 ENDIF IF this.Value=0.5...
  14. 738262

    VFP 7.0 AND EXCEL CHARTS PROBLEM(ARRAYS)

    Hi all, I have a Problem with excel charts. this is my code LOCAL xlapp as Excel.Application LOCAL xlwrk as Excel.Workbook LOCAL xlsht as Excel.Worksheet LOCAL XLSERIES AS Excel.Series xlapp=CREATEOBJECT("Excel.Application") xlwrk=xlapp.Workbooks.Add() xlsht=xlwrk.Sheets(1)...
  15. 738262

    Toplevel form puzzler???

    Hi Use the activate and deactivate events instead
  16. 738262

    Excel Automation Problem

    Hi all, I am trying to create a chart in excel from Vfp I have no problem to add a series which has source a range object but i cannot add a series which has as source an array. Has anyone done this before. Please Help.
  17. 738262

    Hack VFP Database format

    check the following faq184-1671
  18. 738262

    C++ Math question

    Hi All. Is there a function i can use to implement powers other than the pow function? The pow function can only calculate number up to 2^64 and I need 2^1024. Thank You.
  19. 738262

    Can VFP read DOUBLEs?

    Hi, See this Faq I created. faq 184-1932
  20. 738262

    64BIT FLOATING FUNCTIONS

    FUNCTION Float64ToNum LPARAMETERS Float64 AS STRING *!* S XXXXXXX XXXX MMMM MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM MMMMMMMM *!* 0 0000000 0000 0000 00000000 00000000 00000000 00000000 00000000 00000000 *!* 1 2345678 9012 3456 78901234 *!* 1 2 3 LOCAL SIGN...

Part and Inventory Search

Back
Top