Search found 16379 matches: function

Return to advanced search

Re: how to find out if a Record was updated ?

Jimmy All you need to do is add two fields to your database table cUser := WNetGetUser() // FiveWin function cUser := UPPER( cUser ) "LastUpdate" "D" 8 and "UpdatedBy" "C" 15 When you add or save a record just update the lastupdate ...
by Rick Lipkin
Thu Jun 06, 2024 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to find out if a Record was updated ?
Replies: 10
Views: 175

Fwxlsxlib error xbrowse oBrw:toExcel

Hi all, when the oBrw:toExcel function is executed and the UseXLSXLIB( .T. ) command is active to use the Fwxlsxlb library this error appears : Application =========== Path and name: d:\Zephir\NwCoge\Sigah.exe (32 bits) Size: ********* bytes ...
by mauri.menabue
Thu Jun 06, 2024 8:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwxlsxlib error xbrowse oBrw:toExcel
Replies: 1
Views: 52

Re: paste one DC on second DC

you can use StretchBlt API function https://learn.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-stretchblt BOS Taurus of HMG have this : //*****************************************************************************************************************************//* ...
by Jimmy
Wed Jun 05, 2024 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: paste one DC on second DC
Replies: 5
Views: 71

Re: Ayuda con DLL

Hola Antonio. Esta declaracion: DLL32 FUNCTION PeriodSalesByGrade( pt AS LPSTR, periodID AS LPSTR, pte AS LPSTR, @periodInfo AS LPSTR ) AS BOOL FROM "Fusion" LIB "FusionClass.dll" La puse y tambien la saque para probar si ...
by Jorge Jaurena
Wed Jun 05, 2024 1:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 109

Re: Ayuda con DLL

Disculpa, no entiendo la pregunta. Aqui está la declaración de tu función: DLL32 FUNCTION PeriodSalesByGrade( pt AS LPSTR, periodID AS LPSTR, pte AS LPSTR, @periodInfo AS LPSTR ) AS BOOL FROM "Fusion" LIB "FusionClass.dll" sin embargo en tu código ...
by Antonio Linares
Tue Jun 04, 2024 7:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 109

Xbrowse Shift/select redraws buttonbar

... redrawn and somewhat flicker then. I wonder if this is standard behavior or do I have to look at my code for a wrong code.... Shift select has no function of mine to call.
by Marc Venken
Tue Jun 04, 2024 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Shift/select redraws buttonbar
Replies: 1
Views: 61

Re: Ayuda con DLL

... Static Status,SubStatus,ModCem ******************** VENTANA PRINCIPAL DEL SISTEMA *************************** Function Main() Local oDbf,Vec1,Q,Titulo,MsgFooter,IPCem Private DBF1,CDX1 DBF1:=CurDrive()+":\"+Curdir()+"\CONFPIPE.DBF" USE &DBF1 ...
by Jorge Jaurena
Tue Jun 04, 2024 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 109

Re: EXCEL and interior color

Use CHOOSECOLOR() function instead of a fixed RGB() color.
by Enrico Maria Giordano
Mon Jun 03, 2024 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL and interior color
Replies: 6
Views: 106

PathUrl()

... PathUrl() and it perfectly returns to me the relative path such as "/folder/subfolder". Maybe someone could advise me an equally nice function for the full URL, including protocol and domain name like "https://example.com/folder/subfolder". ChatGPT told me to work around ...
by Ruth
Mon Jun 03, 2024 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PathUrl()
Replies: 3
Views: 105

Re: get your external IP

I allready Used

Function GetIP()
Local cVar1
WsaStartUp()
cVar1 := GetHostByName( GetHostName() )
WsaCleanUp()
return cVar1
by Silvio.Falconi
Mon Jun 03, 2024 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: get your external IP
Replies: 11
Views: 421

Re: Compilar Harbour modo Consola 64bits

Please set harbour warnings to the highest level (-w3). That way, you will find some errors in your code (oServer is not declared nor assigned in DemoMySql() function).
by Enrico Maria Giordano
Sun Jun 02, 2024 6:50 am
 
Forum: FiveWin para CA-Clipper
Topic: Compilar Harbour modo Consola 64bits
Replies: 25
Views: 460

Re: Ver PDF

Mira, se ayuda: // C:\FWH\SAMPLES\SHOWPDF3.PRG #include "FiveWin.ch" STATIC oWnd FUNCTION Main() LOCAL oActiveX, oPdf, oIco, oBar, oBmp, cFile cFile := "C:\TEMP\MODELO.PDF" SkinButtons() DEFINE ICON oIco FILE "..\icons\fax.ico" // mdichild ...
by karinha
Sat Jun 01, 2024 1:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RESUELTO - Ver PDF
Replies: 9
Views: 352

KEYBOARD command not working (solved)

Just a FYI. I noticed my function below doesn't work when I compiled with FWH+Harbour FUNC UD_KeyPress( nKey)     DO CASE        CASE nKey == VK_F3         && F3 - System date             KEYBOARD DTOC( DATE() ...
by hua
Thu May 30, 2024 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: KEYBOARD command not working (solved)
Replies: 0
Views: 79

Re: shellexecute open a folder and search files

HI,
You could use the "directory" function

aFiles := DIRECTORY( "f:\myapp\report\" + "202405*.pdf")
by Willi Quintana
Fri May 24, 2024 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: shellexecute open a folder and search files
Replies: 10
Views: 306

Re: MQTT xHarbour

... MQTTLIB "paho-mqtt3c.dll" #DEFINE DLL_OSAPI 0x0020 // __stdcall #DEFINE NULL Nil Static nHandle Static ConnLost , MsgArrvd, Delivered Function WPRA101_MQTT() Local nResult if !file( MQTTLIB ) Vt_Aviso("Arquivo " + MQTTLIB + " não localizado...",.T.) Return( Nil ...
by lzanardo
Thu May 23, 2024 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MQTT xHarbour
Replies: 7
Views: 494
Next

Return to advanced search

cron