Search found 273 matches: cname

Return to advanced search

Re: FWH 24.02 y Harbour con BCC7.7

... 0 )    RETURN NIL Result: 1 2 Muchas gracias Enrico, Es cierto, en esa situación funciona, pero el caso es que en esta no: If Select( ::cName ) > 0 DbSelectArea( 0 ) --->>> MsgInfo( Select(), "Hola" ) EndIf ¿Cómo funcionan DbSelectArea() y Select()? " DBSELECTAREA() ...
by FiveWiDi
Tue Mar 05, 2024 6:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 24.02 y Harbour con BCC7.7 y Select()
Replies: 19
Views: 398

Re: WebView2 Essentials: Guides, Tips & Resources

... of the web view. Init(cScript): Initializes the web view with a JavaScript script. GetWindow(): Retrieves the window handle of the web view. Bind(cName, pFunction): Binds a native function to a JavaScript function in the web view. Center(): Centers the web view window. Unbind(cName): Unbinds a ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 463

Re: LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED

... abre en modo compartido (no se que otras consecuencias puede tener...)" dbUseArea( .F.,Iif(nDriver==1,"DBFNTX",Nil),oApp:DataPath+cName,cRealAlias,.T.,.F.,Iif(!Empty(cdp),cdp,Nil) ) Alguien ha realizado este cambio ? Voy a intentar compilarlo con esa modificacion. Ayuda y comentarios ...
by mterraz
Tue Jan 02, 2024 1:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED
Replies: 3
Views: 339

Re: Como detecto si un archivo es del tipo XML?

Que te hace suponer que oTagActual:cName vale 'xml' ?
by Antonio Linares
Thu Nov 09, 2023 12:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como detecto si un archivo es del tipo XML?
Replies: 10
Views: 594

Re: Incluyendo el SQLRDD

SR_DeletedName() Returns the name of the column that manages the Deleted() status › Syntax SR_DeletedName( [<cName>] ) ==> cOldSet › Arguments <cName> Name column to manage the Deleted() status. › Return Returns the status that was current before SR_DeletedName() ...
by carlos vargas
Fri Aug 25, 2023 1:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2308

Re: Incluyendo el SQLRDD

SR_RecnoName() Returns the name of the column that stores the Recno() › Syntax SR_RecnoName( [<cName>] ) ==> cOldSet › Arguments <cName> Column name to manage the Recno(). › Return Returns the status that was current before SR_RecnoName() was called. › Description ...
by carlos vargas
Fri Aug 25, 2023 1:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2308

Re: Create a variable

Perhaps,

for st=1 to 10
cName:= "n_"+ltrim(str(st))
PRIVATE &cName
next

regards
by hmpaquito
Wed Nov 16, 2022 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a variable
Replies: 11
Views: 711

Re: How install Harbour on web server

... restart. If you have your notebook with you on holiday, then you can simply install a mirrored web server there and, in an emergency, change the CNAME record at your provider to the new IP. With mod harbour and e.g. DBF, you only need to copy the APACHE directory and everything works. But who ...
by Otto
Sun Sep 11, 2022 8:41 am
 
Forum: mod_harbour
Topic: How install Harbour on web server
Replies: 26
Views: 4379

Re: FIELD Selector for FiveWin ?

... don't know fivewin, but I believe the syntax differs from minigui; the minigui syntax model for graphical objects is: define window define textbox cName row 10 col 10 width 50 height 20 end textbox end window Best regards, Otto C:\FWH\samples\dragdrop3.prg     // FiveWin - own Drag&Drop ...
by Otto
Sat Jul 30, 2022 6:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIELD Selector for FiveWin ?
Replies: 6
Views: 1089

Re: Iniciando en el OutLoook 2007

... : vmailpre -> es una variable publica que defino al principio de la aplicación donde asigno el email del cliente para pasarlo a rpreview.prg cname -> es la variable que asigno a la hora de imprimir el documento y que pone como asunto del email. Ejemplo : PRINTER oPrn ;      NAME ("Factura ...
by Garbi
Tue Jun 21, 2022 11:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Iniciando en el OutLoook 2007
Replies: 5
Views: 606

Re: IE

... FUNCTION WEBVIEW_DESTROY( hWebView AS LONG ) AS VOID PASCAL FROM "webview_destroy" LIB hDLL DLL FUNCTION WEBVIEW_BIND( hWebView AS LONG, cName AS LPSTR, pFunc AS LONG, pVoid AS LONG ) AS VOID PASCAL FROM "webview_bind" LIB hDLL DLL FUNCTION WEBVIEW_EVAL( hWebView AS LONG, cJavaScript ...
by Natter
Thu May 26, 2022 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1668

Re: How write a right name of a field

... NAME are fieldnames. Then you can do: msgInfo( oDBF:ID ) To put data into a field of a database object you just do: oDBF:ID := cID oDBF:Name := cName However you should always use a meaningful name for the database object, so it should be something like: oCustomer:ID oCustomer:Name You should ...
by Silvio.Falconi
Fri Apr 29, 2022 8:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How write a right name of a field
Replies: 6
Views: 479

Re: How write a right name of a field

... NAME are fieldnames. Then you can do: msgInfo( oDBF:ID ) To put data into a field of a database object you just do: oDBF:ID := cID oDBF:Name := cName However you should always use a meaningful name for the database object, so it should be something like: oCustomer:ID oCustomer:Name You should ...
by James Bott
Thu Apr 28, 2022 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How write a right name of a field
Replies: 6
Views: 479

Re: Cambiar columna de consulta TDolphin

... not an arrangement. However, in some opportunities I have handled it as such. When I want to refer to the values ​​of the query, I do for example: cName := oQuery: description nCost := oQuery:cost nQuantity := oQuery:existence And it has worked well. I always used the Hernan Cecarreli listbox. ...
by JoseAlvarez
Sat Apr 16, 2022 4:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar columna de consulta TDolphin
Replies: 7
Views: 553

Re: ListBox Input Field Scrolling........

... ; FIELDSIZES 110,235,345,130,130 ; FONT oFntAE ; ID 1114 OF oDlg ; ON CHANGE (P6_Mast->(DbSeek(Trim(PadCode1(aAcc_No[ nItem ])))) ,; cName:=P6_Mast->Acc_Name ,; oSay11:Refresh() ,; oSay21:Refresh() ,; oSay31:Refresh()) oBrw:nClrForeHead := 0 oBrw:nClrBackHead := 8778750 &&..Cream ...
by RiazKhan
Fri Apr 15, 2022 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox Input Field Scrolling........
Replies: 2
Views: 246
Next

Return to advanced search