hi everyone,
i have a visual foxpro9sp2 form and i need to pass some variables with values into vb.net application , here is what iam doing :
MAPCODE=CUSTOMER.CUSTOMER_CODE
MAPSTREET=CUSTOMER.CUSTOMER.ADDRESS2
MAPCITY=CUSTOMER.CITY
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName="C:\Documents and Settings\sunny\Desktop\Locator-with-Setup\Locator\TEST.EXE"
cAction = "open"
cParams = "MAPCODE,MAPSTREET,MAPCITY"
ShellExecute(0,cAction,cFileName,"cParams","",1)
the vb.net application comes up fine .. but for some reason i think the values from the variables i'v passed are not read into the vb.net form ... can anyone tell if there's anything wrong in the above lines or is there another way to do it ..
thankx alot
vijay