Search found 61 matches: getcurdir

Return to advanced search

Re: SqlQuery and Microsoft.ACE.OLEDB.12.0 error

Changed for USE (GetcurDir()+"\Location") ALIAS Location SHARED NEW as per your No. This much work TDatabase itself does automatically. I have some doubts on this. ADO connection is to be created with datapath. For now, ...
by nageswaragunupudi
Fri Oct 11, 2013 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SqlQuery and Microsoft.ACE.OLEDB.12.0 error
Replies: 14
Views: 3756

Re: SqlQuery and Microsoft.ACE.OLEDB.12.0 error

OK. The folder was just a phony, it is installed in a correct path. Changed for USE (GetcurDir()+"\Location") ALIAS Location SHARED NEW as per your suggestion. For me did not change anything: still working correctly and as before. Need to consult with the ...
by ellano
Fri Oct 11, 2013 11:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SqlQuery and Microsoft.ACE.OLEDB.12.0 error
Replies: 14
Views: 3756

Re: Windows Server - Error

Holá Lucas, Gracias...

PRIVATE cDirPleno := GETCURDIR() // En FHW13.06 FOR XHARBOUR Funciona...

// No uso HARBOUR.
//PRIVATE cDirPleno := hb_dirbase() // Esto no funciona en XHARBOUR debe ser comando de HARBOUR Correcto?
by karinha
Tue Aug 20, 2013 5:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Windows Server - Error
Replies: 12
Views: 3170

Re: moving to MSVC 32 bits

... : warning LNK4006: _HB_FUN_GETCURDIR ya se definió en amedida_fivewinmsvc.lib(varios.obj); segunda definición omitida function GetCurDir() is duplicated in both drives.c and in varios.c (or OBJ). You can not have duplicates. Don't use the /FORCE clause, instead remove each duplicated ...
by Antonio Linares
Sun Mar 03, 2013 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8197

GET xHarbour 1.2.1 FW 11.07 Borland C++ 5.82

... "&Fichero Excel" PIXEL SIZE 120,24 OF oWnd FONT oFont ; ACTION ( cFileExcel := cGetFile32( "*.xls", 'Abrir fichero', , GetCurDir(), .F., ,"*.xls" ), ; IF( Empty( cFileExcel ), , ( aoSy[ 1 ]:Refresh(), lFichSub := .T. ) ) ) @ 11,130 SAY aoSy[ 1 ] PROMPT cFileExcel ...
by Julio Cepeda
Fri Feb 08, 2013 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GET xHarbour 1.2.1 FW 11.07 Borland C++ 5.82
Replies: 3
Views: 829

Re: Brush issue

Tim, I don't know, why the brush gets lost. Another solution could be to define the brush LOCAL : FUNCTION Main() LOCAL oBrush2 c_path := GETCURDIR() DEFINE BRUSH oBrush2 FILENAME c_path + "\Images\Stone.bmp" DEFINE WINDOW oWnd TITLE "Testing Brush ... ... DEFINE BUTTON oButt1 ...
by ukoenig
Wed Jul 11, 2012 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Brush issue
Replies: 15
Views: 4120

Re: Load, show in dialog, interactively crop and save cropped

... is supported. Just try to recompile. Please check the makefile. I changed the path-define on top to support new FWH-releases like : c_path := GETCURDIR() IF !FILE( c_path + "\NCONVERT.EXE" ) c_path := CURDRIVE() + ":\" + GETCURDIR() ENDIF I'm just working on a update : ...
by ukoenig
Thu Jun 28, 2012 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Load, show in dialog, interactively crop and save cropped
Replies: 31
Views: 9429

RMChart y FWH 1204

... // oExcel:Get( "ActiveWorkbook" ):Save() cambiado por: oExcel:ActiveWorkbook:Save() curDrive() cambiado por: hb_curDrive() GetCurDir() ahora devuelve también la letra de la unidad Un campo blob de sqlite devuelve una array en lugar de una cadena como antes. oRs:ActiveConnection(oCon) ...
by alvaro533
Wed Jun 13, 2012 9:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RMChart y FWH 1204
Replies: 2
Views: 803

Re: Color Fill a GroupBox

... lDDirect, nDGradpos, cDBrush, cDImage ), ; oDlg1:Move( 60, 30, oDlg1:nWidth, oDlg1:nHeight, .f. ) ) c_path defines the Aplication-path : c_path := GETCURDIR() // in older FWH-versions => c_path := CURDRIVE() + ":\" + GETCURDIR() A Sample changing the Background : @ 200, 8 SELEX oSelect ...
by ukoenig
Thu May 10, 2012 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color Fill a GroupBox
Replies: 3
Views: 1323

Re: NEW Update Logoedit 2.3 ( Download )

... Gifs ... --- You can add Your own favorite Websites, if You like. 2. Define of FWH-release for Path-define is not needed anymore added : c_path := GETCURDIR() IF !FILE( c_path + "\SETTING.INI" ) c_path := CURDRIVE() + ":\" + GETCURDIR() ENDIF 3. Some new BMP's added Download ...
by ukoenig
Tue Apr 24, 2012 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: NEW Update Logoedit 2.2 / 2.3 + Helpfile ( Download )
Replies: 4
Views: 1165

LOGOEDIT 1.1 and Group-tester ( Download )

... Before You want to create a EXE-file, You have to select the FWH-release because of the change : c_path := GETCURDIR() use in older FWH-versions c_path := CURDRIVE() + ":\" + GETCURDIR() As well You have to select, if You want to create a Dialog ...
by ukoenig
Fri Mar 23, 2012 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LOGOEDIT 1.1 and Group-tester ( Download )
Replies: 1
Views: 800

Re: exe run's from xmate , not stand alone

Frank, I always use without any Problems : c_path := GETCURDIR() // use in older FWH-versions !!! // c_path := CURDRIVE() + ":\" + GETCURDIR() A image call : DEFINE IMAGE oImage FILE c_path + "\Images\Logo.bmp" or a Button : @ 5, ...
by ukoenig
Tue Mar 20, 2012 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: exe run's from xmate , not stand alone
Replies: 3
Views: 1078

Re: exe run's from xmate , not stand alone

Antonio , Thank you very much for your answer. I had some problems with GetCurDir and changed as : # ifdef FWH12 LOCAL cDir := GetCurDir() + "\" IF ! (cDir=CurDrive()+":\") cDir := CurDrive() + ":\" + GetCurDir() + "\" ...
by Demont Brecht
Tue Mar 20, 2012 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: exe run's from xmate , not stand alone
Replies: 3
Views: 1078

Re: tFolderEx transparent text FWH1202

Rick,

the Download-link of complete Source ( 2.3 MB )

c_path := GETCURDIR()
must be changed, using older FWH-versions to load Images
c_path := CURDRIVE() + ":\" + GETCURDIR()

http://www.pflegeplus.com/fw_downloads/rick2.zip

Best Regards
Uwe :lol:
by ukoenig
Sat Mar 03, 2012 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tFolderEx transparent text FWH1202
Replies: 6
Views: 1790

Re: Changing the Toolbar content

... Array can be : aBtn[5][4] => BTN_UP, BTN_DOWN, BTN_DISABLE , BTN_OVERMOUSE FUNCTION changed in FWH 12.01 !!! ( Drive is included ) c_path := GETCURDIR() + "\" maybe You have to use : c_path := CURDRIVE() + ":\" + GETCURDIR() + "\" http://www.pflegeplus.com/pictures/btnchg.jpg ...
by ukoenig
Wed Feb 08, 2012 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing the Toolbar content
Replies: 6
Views: 2270
PreviousNext

Return to advanced search