Search found 598 matches: msgalert

Return to advanced search

Re: MULTISELECT RECORDSET

Thanks for your help .

Here is the code that work for me .

oRs:Filter := oLbx:aSelected
oRs:MoveFirst()
do while !oRs:Eof()
msgalert(oRs:Fields(1):Value)
oRs:MoveNext()
enddo

Thanks

Philippe
by Jack
Sat Jun 26, 2021 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MULTISELECT RECORDSET
Replies: 3
Views: 448

Re: FWH1905: Watermark behind XBrowse

... image :?: aImage := oWnd:ReadImage( cBackImage, , .t. ) :bPaintBack := < |Self| FillRect( ::hDC, GetClientRect( ::hWnd ), ::oBrush:hBrush ) // MsgAlert( FW_ValToExp( ::DataRect():aRect ) ) // returns the array of the used painting area -> { 23, 24, 456, 783 } // { top, left, bottom, right ...
by ukoenig
Thu Apr 29, 2021 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH1905: Watermark behind XBrowse
Replies: 4
Views: 1092

Re: Normas para el QR-Code

... cJason=StrToBase64( cJason ) cOrigen=cOrigen+cJason //MsgAlert(cOrigen) ElTxt:= "QrJason.txt" Nhandle:= fcreate(ElTxt) If (nhandle > 0) fwrite(Nhandle, cOrigen + CRLF) fclose(nhandle) EndIf ...
by jpcavagnaro
Wed Jan 20, 2021 11:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Normas para el QR-Code
Replies: 29
Views: 2983

Re: Normas para el QR-Code

... cJason=StrToBase64( cJason ) cOrigen=cOrigen+cJason //MsgAlert(cOrigen) ElTxt:= "QrJason.txt" Nhandle:= fcreate(ElTxt) If (nhandle > 0) fwrite(Nhandle, cOrigen + CRLF) fclose(nhandle) EndIf ...
by postinelli
Thu Jan 14, 2021 8:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Normas para el QR-Code
Replies: 29
Views: 2983

Re: Controlar tamaño ventana cGetfile

... ) if HB_DirExists( Curdrive()+":\"+cRaiz+"\"+CarpetaSAT+"\"+apunte) msgalert("Ya existe ese apunte") aFiles:=Array( ADir( Curdrive()+":\"+cfILES+"\"+"*.*", aFiles ) ) if len(aFiles)==0 ...
by Ramón J.
Wed Dec 30, 2020 2:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Controlar tamaño ventana cGetfile [SOLUCIONADO]
Replies: 13
Views: 999

Controlar tamaño ventana cGetfile [SOLUCIONADO]

... ) if HB_DirExists( Curdrive()+":\"+cRaiz+"\"+CarpetaSAT+"\"+apunte) msgalert("Ya existe ese apunte") aFiles:=Array( ADir( Curdrive()+":\"+cfILES+"\"+"*.*", aFiles ) ) if len(aFiles)==0 ...
by Ramón J.
Wed Dec 30, 2020 10:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Controlar tamaño ventana cGetfile [SOLUCIONADO]
Replies: 13
Views: 999

Trabajando con DLL de un SDK

... AS LONG) AS BOOL PASCAL FROM "NET_DVR_GetDVRWorkState_V30" LIB "HCNetSDK.dll"function test2()  msgalert(1)  NET_DVR_Init()  msgalert(2)  NET_DVR_SetConnectTime(3000,3)  msgalert(3)  msgalert(NET_DVR_GetDVRWorkState_V30("admin"))  ...
by informaticaeloy
Tue Nov 03, 2020 4:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Trabajando con DLL de un SDK
Replies: 6
Views: 1120

Re: New FTDN February 2020 (FWH 20.02)

... ventana activa. Se ha corregido. Esta función ahora sólo afecta a las funciones Msg*() del API de Windows como por ejemplo: MsgInfo(), MsgStop(), MsgAlert(), MsgYesNo(), MsgYesNoCancel(), MsgRetryCancel(), MsgAbout() y también a las funciones MsgRun()y MsgWait() de FWH. - Después de llamar a la ...
by Antonio Linares
Fri Feb 28, 2020 7:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2020 (FWH 20.02)
Replies: 1
Views: 4660

New FTDN February 2020 (FWH 20.02)

... were also centered in the active window. This is fixed now. This function now affects only Windows Api Msg* dialogs, i.e., MsgInfo(), MsgStop(), MsgAlert(), MsgYesNo(), MsgYesNoCancel(), MsgRetryCancel(), MsgAbout() and also FWH functions MsgRun(), MsgWait(). - After calling CenerMsgs(), calling ...
by Antonio Linares
Wed Feb 26, 2020 10:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2020 (FWH 20.02)
Replies: 1
Views: 4660

Detectar firewall en tiempo de ejecución

... hay una actualización a estos clientes NO se le actualiza, incluso no soy capaz de modificar el código fuente para que al menos se le muestre un msgalert advirtiendo del problema.   oFtp     :=tFtp():New(cServer,oInternet,cUser,cPass)  if !Empty( oFtp:hFtp )   cmensaje='Conectado ...
by Loren
Wed Feb 12, 2020 7:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar firewall en tiempo de ejecución
Replies: 4
Views: 1450

Re: Ayuda, Seleccion con ENTER en Xbrowse

Hola remtec:
pon una bandera con msgalert(nkey) dentro del keydown para que verifiques si llega alli, ademas esta todo junto la sentencia:
Code: Select all  Expand view

nKey=32.or.nKey=VK_RETURN
 

prueba asi:
Code: Select all  Expand view

nKey=32 .or. nKey=VK_RETURN
 
by artu01
Fri Jan 10, 2020 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda, Seleccion con ENTER en Xbrowse
Replies: 7
Views: 974

Re: Inserting an icon on a button

... I need to insert this icon into the button. How can I do that ? @ 50 , 280 BUTTONBMP oBtn3 BITMAP 'SETUP1.bmp' SIZE 64, 64 PIXEL OF oDlg ; ACTION MsgAlert( "Test" ) regards Uwe :D
by ukoenig
Fri Dec 06, 2019 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: Consultar DNI o CUIT en Argentina (Solucionado)

... DatNom=allTrim( substr( cTextoHTML, at( '<tr class="odd"><th>Nombre</th><td>', cTextoHTML )+34,100 )) // MsgAlert('DatNom1: '+DatNom) DatNom=alltrim( substr( DatNom, at('>',DatNom)+1, 50 ) ) // MsgAlert('DatNom2: '+DatNom) DatNom=alltrim( substr( DatNom, ...
by postinelli
Thu Nov 28, 2019 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consultar DNI o CUIT en Argentina (Solucionado)
Replies: 8
Views: 1580

Fivewin OLE with Outlook

... oOutlook := CreateObject( "Outlook.application" ) MsgWait( "Outlook is open now by CreateObject!","Info",2 ) Catch MsgAlert( "Cannot open outlook" ) End End If oOutlook == nil MsgAlert( "oOutlook is nil" ) Endif Return oOutlook Both seem to work ...
by byron.hopp
Thu Oct 03, 2019 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin OLE with Outlook
Replies: 7
Views: 1140

Re: alphanumeric vs. numeric

Hallo Iris,

I have to find out if a character variable inside is alphanumeric or numeric.

VAL returns the info You are looking for

Msgalert( VAL( "aaa" ) ) = 0
Msgalert( VAL( "111" ) ) = 111

best regards
Uwe :D
by ukoenig
Wed Oct 02, 2019 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: alphanumeric vs. numeric
Replies: 5
Views: 742
PreviousNext

Return to advanced search

cron