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...
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
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
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
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...
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
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...
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...
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)...
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.
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.