topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
ole connection to FW program | Marc,
Yes, you can do it. Though it is much easier if you do it with a Harbour and FWH application. I recommend you to upgrade to 32 bits to implement it. |
ole32 | could anyone send to me ole2 lib?
my address:eugenio.romeo@libero.it |
ole32 | Do you need ole2.lib for Clipper or hbole.lib for Harbour?
EMG |
ole32 | Ciao Enrico,
io uso FW + Harbour.
Grazie per l'attenzione
Eugenio |
ole32 | Sent to your private email.
EMG |
ole32 | gracias para ambas |
olesetproperty | Hola. Tengo una aplicacion donde necesito leer una base dbf, y mostrarla en excel. Usando los samples de fivewin (tengo harbour 803), pude hacerla sin problemas. Pero uno de los campos de la dbf, a pesar de ser texto, tiene valores "001","002", etc. y se muestran en la planilla excel como numericos, cosa que no me sirv... |
olesetproperty | [quote="diegopolverelli":1pcglmql]Hola. Tengo una aplicacion donde necesito leer una base dbf, y mostrarla en excel. Usando los samples de fivewin (tengo harbour 803), pude hacerla sin problemas. Despues tengo que tomar los datos modificados y validar algunas cosas. Pero si pongo un numero en una columna, no lo puedo r... |
olesetproperty | Hola,se me ocurre que al ller el campo verifiques si es numerico o texto, si es texto le "sumas" un espacio a la variable leidacDato :=_Field->campoIf VALTYPE(cdato) = "C" cDato := " " + cDatoEndIF.....Salu2 |
olesetproperty | Espectacular. Mil gracias...!!! |
olesetproperty | Diego,Prueba con:oHoja:Cells( ... ):NumberFormat := '@'le indica que dichas celdas son tipo caracter |
olesetproperty | Antonio, yo use un esquema similar a de los samples, utilizando OLESETPROPERTY y OLEGETPROPERTY. ¿como se puede invocar de la manera que me decis vos? tenes algun ejemplo. Te adjunto un codigo donde leo de una base y lleno una tabla xls. Otra cosa, cuando la tabla es grande, por ej, 10000 reg. el proceso de llenar el .... |
olesetproperty | quetal diego, aqui un ejemplo , de crear una xlspor bloques, usando la class TExcelScript():New('Victor') y TClipBoard():New() aunque tambien se puede con ELE directo. nRow := 2 nStart := nRow cMemo := "" dbselectArea( cArtics )dbgotop()do while !eof() cMemo += field->codigo cMemo += chr(9)+field->a... |
olesetproperty | Diego,Es preferible usar la clase TOleAuto de Harbour/xHarbour cuando tienes que acceder a ese tipo de datos. El código es más simple. |
olesetproperty | disculpá mi ignorancia... ¿que es TOLEAuto? ¿hay algun ejemplito en SAMPLES de esto que me propones? con el excel.prg y excel2.prg arme lo que postié, y lento, pero camina... que es TOleAuto. ¿yo en que hice lo que subi? ¿el ejemplo que subio que decia TOle "Victor", o algo asi, es lo mismo que propones vos?Gracias!!![... |
olesetproperty | Diego,Busca en estos foros por CreateObject ó por TOleAuto. Hay muchos ejemplos.Aqui tienes un ejemplo de Enrico:[code:16d380qm]
FUNCTION MAIN()
LOCAL oExcel := CREATEOBJECT( "Excel.Application" )
LOCAL oSheet
oExcel:WorkBooks:Open( "E:\XHARBOUR\TEST.XLS" &#... |
olesetproperty | disculpame, Antonio... busque y busque ademas "CreateObject" e "Include", pero siempre veo ejemplos donde lo unique que tienen en la cabecera es fivewin.ch. Cuando copio lo que me mandaste me da el error de que no existe la funcion:Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 BorlandError: Unresolved external '... |
olesetproperty | Diego,> C:\FW192\SAROSSX\F_EXCEL.OBJ Estas usando la versión 1.92 de FiveWin ??? |
olesetproperty | No, tengo fwh 803. Igual ya lo pude usar. Gracias...!!![quote="Antonio Linares":3ajf6yfw]Diego,
> C:\FW192\SAROSSX\F_EXCEL.OBJ
Estas usando la versión 1.92 de FiveWin ???[/quote:3ajf6yfw] |
on change en un get | Hola. Estoy usando un get con un on change, para que se actualice un say según lo que vaya escribiendo, pero se me borra el contenido del get cada vez que escribo algo. Digamos que solo me sale el ultimo caracter escrito.
@ 40, 55 GET OBJ[1] VAR ARTI[1] PIXEL SIZE 58,10 COLOR CLR_AMARILLO, CLR_AZULETE;
... |
on change en un get | [code:2kjjjezk]oGet:bChange:={| nKey, nFlag, self| msgInfo( getLastKey( nKey, nFlag, oGet) ) }
function getLastKey( nKey, nFlag, oGet)
local nLastKey := if( getKeyState(VK_SHIFT) .or. ;
GetKeyToggle( VK_CAPITAL), chr(oGet:nLastKey... |
on change for get | Hi
I HAVE A PROBLEM WITH THE CHANGE IN GET
I use a twbrose in which the database is indexed on the name
I want use a get which will change the scope of the browse
When i GET "M" it must scope the data beginning by "M"
and if if enter "A" after it must scope the data beginning by "MA" etc etc..
I use "redefine ... |
on change for get | Instead of bChange, use bPostKey. It is called like this in TGet.
Eval( ::bPostKey, Self, ::oGet:Buffer )
bChange is for use when you want to test the keystroke and either accept or reject it. If you return .t. from the codeblock the lastkey is accepted into the buffer, if you return .f. then the lastkey is not accep... |
on change for get | Thanks
but in my FW 2.1 i don't have this bpostkey method
It always return
Error description: Error Objects/6 No Exp. Method: TGET:_BPOSTKEY
How can i do? |
on change for get | Try this example.
James
--------------------
In order to use last char typed, let me suggest:
oGet:bChange:={|nKey| MyEval(oGet,nKey) }
Function MyEval(oGet,nKey)
Local cBuffer := oGet:oGet:Buffer
if nKey<>VK_RETURN
cBuffer := Stuff(cBuffer, ;
oGet:nPos,1,if(nKey=VK_BACK,'',chr(nK... |
on change for get | Many thanks James
The stuff function generate allways a fatal error on my computer, but
with your help i've found everything that work well
local nkey:=lastkey()
local filtre:=""
.
.
.
redefine get g1 var nm id 105 picture "!A" of rep
g1:bChange:={|nkey| MyEval(g1,nkey,oBrowse,@filtre) }
.
.
.
.
Function MyEval(oGet... |
on change for get | And now it work in the two directions
Function MyEval(oGet,nKey,l1,filtre)
Local cBuffer := oGet:oGet:Buffer
if nkey=8
filtre:=substr(filtre,1,len(filtre)-1)
else
cbuffer:=upper(chr(nkey))
filtre:=filtre+cbuffer
endif
re->(sx_setscope(0,filtre))
re->(dbgotop())
l1:refresh()
return nil
Thank Thank ... |
on change for get | I am glad to hear you got it working.
Regards,
James |
one array from two ( sudoku revenge) | I must create one array from two array
Local aPrompt := { "a", "b", "c", "d", "e", "f", "g", "h", "i" }
Local aData := { { " ", " ", " ", "2", " ", "3", "8", " ", "1" }, ;
{ " ", " ", " ", "7", " ", "6", " ", "5", "2" }, ;
{ "2", " ", " ", " ", " ", " ", " ", "7", "9" }, ;
... |
one array from two ( sudoku revenge) | Silvio,
The array aSudoku must be extended to aSudoku[10][9] :
As well cells with a value must be excluded for EDIT_GET .
[img:3bqjlv7f]http://www.pflegeplus.com/IMAGES/Soduku2.jpg[/img:3bqjlv7f]
[code=fw:3bqjlv7f]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0... |
one array from two ( sudoku revenge) | Yes of vourse... this i know also I ...but i loaf asudoku fron a big file txt where are many string of 81 cr..
I take one dtring and make the array asudoku
i wish create another array from asudoku and a prompt..not with hand but from fwh source...
in this case we have the originsl asudoku and the atest
We need asudoku ... |
one array from two ( sudoku revenge) | Uwe,
Now it is ok
[code=fw:3eevmne2]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><span style="color: #B900B9;">//Project sudoku with xbrowse</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><span style="color: #00D7D7;">#include<... |
one array from two ( sudoku revenge) | Silvio,
I found another nice solution,
that keeps the numbered area clean.
[img:3tj70usy]http://www.pflegeplus.com/IMAGES/Sudoku3.jpg[/img:3tj70usy]
[code=fw:3tj70usy]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">//Project sudoku with xbrowse</spa... |
one array from two ( sudoku revenge) | Uwe,
[img:2zeg3gq4]http://www.eoeo.it/wp-content/uploads/2015/01/vv.jpg[/img:2zeg3gq4]
save level1.txt into .\data folder
I put also the color but it not run ok (see ColorCellNew())
I made the func [b:2zeg3gq4]Wichnumbers [/b:2zeg3gq4]to show on say the number possibles but this functionnot run ok
... |
onemany rmk file for harbour | How can I make the onemany.rmk file under harbour becuase the rmk file is written for clipper . What is the make syntax ?
OneMany.exe : OneMany.obj
SET LIB=..\..\..\lib;c:\clipper5\lib
blinker fi OneMany @..\..\..\include\FiveWin
Brc -K OneMany
OneMany.obj : OneMany.prg
c:\clipper5\bin\clipper OneMa... |
onemany rmk file for harbour | Ehab,
You may copy that sample files to the samples directory and perform a buidh.bat onemany |
opciones de compilacion | Hola amigos del foro.
estoy compilando ABC.prg y deseo que el obj de salida sea EFG.obj,
le pongo la opcion /oEFG pero obtengo EFG.c y ABC.obj.
cual es la opcion para que el obj tenga el nombre pedido?
gracias por la respuesta
Jorge Vargas |
opciones de compilacion | Jorge,
[code:3oc8afu5]
c:\xharbour\bin\harbour abc /n /oefg.c
xHarbour Compiler build 0.99.71 (SimpLex)
Copyright 1999-2007, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'abc.prg'...
Lines 4, Functions/Procedures 1
Generating C source... |
ope an file and... | How I can open a 4/5 file dbf ad insert all field into a tree ?first dbf ----->first field ------>second fieldsecond dbf ---->first field ----->second fieldcan someone help me pls ? |
open a popup | I click on a dialog I must open a popup with a menu
but How I can open it on row,col where I click with the mouse ?
any sample please |
open a popup | MENU oMenu POPUP
MENUITEM "Bla-Bla" ACTION Set_Str(1)
SEPARATOR
MENUITEM "Bla-Bla" ACTION Set_Str(2)
ENDMENU
ACTIVATE POPUP oMenu AT nTop, nLeft OF oDlg |
open a popup | Hello Silvio,
For [color=#FF0000:m7dqqcss]Dialog[/color:m7dqqcss]
Also see FWH-sample : RClick.prg
[code=fw:m7dqqcss]<div class="fw" id="{CB}" style="font-family: monospace;"><br />..<br />..<br />oDlg:<span style="color: #000000;">bRClicked</span> = <span style="color: #000000;">{</span> | nRow, nCol, nFlags | ... |
open a popup | sorry
can I isert a combo on this menu or something to select an nItem |
open a popup | Hello Silvio,
a better sample to explain :
a Combo would be a Sub-menue from Main 1
[code=fw:1un6ci8h]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> SHOWPOPUP1<span style="color: #000000;">(</span>oDlg,nRow,nCOL<span style="color: #000000;">)</span... |
open a popup | ok this a good idea I must try |
open a video in a dialog box? | Is it possible to open a video in a separate dialog.
I want to an open a demo of my app in a dialog when opening the app.
Can it be done and if so how?
Thanks. |
open a video in a dialog box? | Did you try DEFINE VIDEO command?
EMG |
open a video in a dialog box? | Hag:
Usa ActiveX y olvidate de mil problemas, ademas con windows 7 puedes ver todo tipo de formatos de video con esta funcion, sin necesidad de programar nada. Ahora con Windows 7 tambien reproduce .MOV ( quikTime ), FLV ( ficheros YouTube ).
Este es un ejemplo con DIALOG:
/*-----------------------------------------... |
open a video in a dialog box? | Using this mode, if u resize window video resize too.
STATIC Function ActivaWMP( oDlg, cFile )
Local oAct:=TActiveX():New( oDlg, "MediaPlayer.MediaPlayer.1")
oAct:SetProp( "FileName", cFile )
oDlg:oClient:=oAct
Return oAct |
open a video in a dialog box? | Thank you all for the help. I'll be trying some of the suggestions. |
open a video in a dialog box? | Other sample:
#include "Fivewin.ch"
static oWnd, oAct
Function main()
define window ownd
wmp("arquivo.mp4")
activate window ownd
Return nil
function wmp( cFile )
oAct:=TActiveX():New( oWnd, "MediaPlayer.MediaPlayer.1")
oAct:SetProp( "FileName", cFile )
oWnd:oClient:=oAct
Return |
open a webpage | Muy respetable Señor Silvio.
Se le agradece su comentario.
Si compartir en Foro Fivetech nuestros codigos y enviarle una ayuda acorde a lo que usted una vez publico es algo que lo molesta pues se le pide diculpas, pero creo que este foro es abierto y todos estamos aqui para ayudarnos mutamente. Si usted es una per... |
open a webpage | Can I open a webpage into a dialog with style ( .nor. 4) inserted on Main window Not MDI ? |
open a webpage | Estimado Silvio.
Lograste por fin darle seguimiento en tiempo real de la flotilla de buses
Mira logre crear seguimiento en tiempo real a la flota de autobuses mira el link, si deses mas informacion te paso como lo hice paso a paso
y podras ponerlo en tu proyecto
<!-- m --><a class="postlink" href="http://www.bus... |
open a webpage | [quote="Busmatic_wpb":fli79278]Estimado Silvio.
Lograste por fin darle seguimiento en tiempo real de la flotilla de buses
Mira logre crear seguimiento en tiempo real a la flota de autobuses mira el link, si deses mas informacion te paso como lo hice paso a paso
y podras ponerlo en tu proyecto
<!-- m --><a class=... |
open a webpage | Hello Oscar,
>como lo hice paso a paso
I hope I understand your offer well.
Please post some code here. I am very interested in it.
Thanks in advance
Otto |
open a webpage | [url:t0a6vxcc]https://www.4shared.com/zip/S6DYic1Kca/WEBMAP.html[/url:t0a6vxcc]
[code=fw:t0a6vxcc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00D7D7;">#Def... |
open a webpage | [b:3nk7595n]Dear karinha,[/b:3nk7595n]
I wish open a webPage into a Dialog havng style nOR( WS_CHILD, 4 ) and this dialog is on window not Mdi
or
the webpage must be load into the Main window not Mdi
I Know well How load a webpage ( I open regulkar webpage into window mdi ( oWndclient) but I need a particular... |
open a webpage | OK.
Sorry, I do not understand your question.
Sorry, I do not have anything like that. |
open a webpage | Mr. Otto You understood perfectly.
I will send a invitation Google drive to download btkserver.zip
Send me an email to <!-- e --><a href="mailto:busmatic@gmail.com">busmatic@gmail.com</a><!-- e --> I'll give you the files you need to see in real time the units that have a GPS. First to go giving a preliminary somethi... |
open a webpage | I could never see a program of your bus prg
It is not true absolutely nothing dear Sir Oscar has also sent to my email the promise that you would send your source but never sent anything except once a file in exe format that could not even open because it gave error, so dear Mr. Oscar avoids to talk about crap. |
open dbf file via internet | i need to open a file dbf in a internet folder.
is it possible with dbUseArea() or tOleAuto()?
can you post some examples or link to them?
thanks |
open file on ftp server | Dear All,
I use MySql on Cloud (Windows Server 2012) and I use Crystal Report 2016.
I use to keep REPORT.RPT in ftp server.
How can I open report form via ftp server?
or
Which way I can open file on cloud server (Windows Server)?
Thanks in advance for any help and idea. |
open file on ftp server | As far as I know, you can't. You have to download the file first. But I hope to be wrong.
EMG |
open file on ftp server | Dear EMG,
Thanks for your kind help. |
open mdb | SalveHo provato a compilare un piccolo esempio per aprire un file mdb,mi l' errore : < can't open 'adordd.ch' >ho la vrersione fhw 7.11, mi potreste dare qualche aiuto in meritograzie Marino |
open pdf with Haru | is it possible open a Pdf with HaruPdf and how ? |
open prev32.dll | HiHow can i open prev32.dll to insert some icons .Best regardsPedro Faro |
open prev32.dll | With a resource editor.EMG |
open prev32.dll | Hi EnricoI only open .dll with workshop , but it's only to 16 bits dll'sregards |
open prev32.dll | Pedro,You can use the resource editor of Pelles C, it´s 32 bit.Pelles C is available here[url:mnztabxu]http://www.smorgasbordet.com/pellesc/[/url:mnztabxu] |
open prev32.dll | Hi StefanHauptTanks very muchwork fine.regards Pedro |
open source Xamarin | [url:jw398ju1]http://www.zdnet.com/article/microsoft-to-open-source-core-xamarin-technologies-and-release-for-free-in-visual-studio/[/url:jw398ju1]
[quote:jw398ju1]Microsoft is open sourcing the Xamarin software development kit, and is making Xamarin Studio for OSX available for no additional cost for Visu... |
open xml with colors and IE | Hi,
Is possible to show a xml in dialog with identation like I.E. does? And chage colors in some tags? Thanks in advance. |
operaciones entre campos en un xBrowse | Buenas tardes. necesito mostrar en un a columna de un xBrowse el resultado de la resta de campos de acuero a una determinada situacion.
algo asi : if (impapag=0,("importe" - "monto"),("impapag"-"monto")) donde tanto impapag como importe como monto son campos de la misma base.
gracias |
operaciones entre campos en un xBrowse | [code=fw:3p6c9ys9]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;">5</span><span style="color: #000000;">]</span>:<span style="color: #000000;">bStrData</span> := <span style="color:... |
operaciones entre campos en un xBrowse | Cesar prueba en su lugar la data :bEditValue |
operaciones entre campos en un xBrowse | We recommend a very simple way.
Directly include the expression in your columns clause like this:
[code=fw:3owzu0gr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ r,c <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</span> w,h <span style="color: #0000ff;">OF</span... |
operaciones entre campos en un xBrowse | Mr. Rao, sieguiendo con el hilo, como podría hacer para reemplazar esto con el formato que ud. indica?
[code=fw:175cti4m]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aTurno := <span style="color: #000000;">{</span><span style="color: #ff0000;">"06:00 a 14:00"</span>,<span style="color: #ff... |
operaciones entre campos en un xBrowse | [code=fw:679zpzjf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// PRIVATE not LOCAL</span><br /><span style="color: #00C800;">PRIVATE</span> aTurno := <span style="color: #000000;">{</span><span style="color: #ff0000;">"06:00 a 14:00"</span>,<span style="color: #ff0000;"... |
operaciones entre campos en un xBrowse | Mr. Rao, gracias por la respuesta.
Perdon mi ignorancia pero seguro algo estoy haciendo mal
Me da este error
[code=fw:h5p1rj2w]<div class="fw" id="{CB}" style="font-family: monospace;"><br />PROCEDURE TURNOS<span style="color: #000000;">(</span>cPermisos<span style="color: #000000;">)</span><br /><span style="c... |
operaciones entre campos en un xBrowse | [quote="nageswaragunupudi":2qrld478]
[code=fw:2qrld478]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;">3</span><span style="color: #000000;">]</span>:<span style="color: #000000;">b... |
operaciones entre campos en un xBrowse | [quote="cmsoft":302rpxti]Mr. Rao, gracias por la respuesta.
Perdon mi ignorancia pero seguro algo estoy haciendo mal
Me da este error
[code=fw:302rpxti]<div class="fw" id="{CB}" style="font-family: monospace;"><br />PROCEDURE TURNOS<span style="color: #000000;">(</span>cPermisos<span style="color: #000000;">)</... |
operaciones entre campos en un xBrowse | Mr. Rao, desde que version de Fivewin funciona esta capacidad?
Porque me da un error, pero tengo la versión 16... |
operador In | Hola Gustavo.
El operador In ahora me entero que existe en Harbour, creo poder afirmar que en Clipper no existia.
si fueran cadenas podrias utilizar el operador $
de la forma
[code=fw:3teijris]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #00C800;">local</span> x ... |
operador In | Hola.
[code=fw:j6yq52g5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">local</span> aDatos:=<span style="color: #000000;">{</span><span style="color: #000000;">1</span>,<span style="color: #000000;">2</span>,<span style="color: #000000;">3</span><span style="color: #... |
operador In | [code=fw:2bga4qyy]<div class="fw" id="{CB}" style="font-family: monospace;"><br />x IN aDatos <br /> </div>[/code:2bga4qyy]
is permissible syntax in xHarbour and is very powerful.
I do not understand the reason for the runtime error, because we can use any datatype for x in this syntax. |
operador In | Mr. Rao
I think Gustavo is using Harbour , the operator IN only exists in XHarbour
in Harbour and with arrays should uses
[code=fw:dblcnnlo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">(</span>Ascan<span style="color: #000000;">(</span>aDatos, x<span style="col... |
operador In | [url:223daqc4]https://vivaclipper.wordpress.com/tag/operators/[/url:223daqc4] |
operador In | [quote:1gqg9zjk]I think Gustavo is using Harbour , the operator IN only exists in XHarbour
[/quote:1gqg9zjk]
If he is using Harbour, he should get a compilation error but not runtime error. |
operador In | Now, I understand.
This sample program:
[code=fw:257kxyvi]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"hbcompat.ch"</span><br />... |
operador de potencia es el simbolo ^? | hola.El operador de potencia es el simbolo ^ o ese simbolo es la "disyuncion exclusiva binaria"?Gracias. |
operador de potencia es el simbolo ^? | Gustavo,Respóndete tu mismo <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->MsgInfo( 2 ^ 3 )MsgInfo( nXor( 2, 3 ) ) |
operador de potencia es el simbolo ^? | Ojo, en C, ^ sí es el operador "xor" |
operador de potencia es el simbolo ^? | Ok gracias.Pasa que estoy probando a nivel binario. y se me vino esa duda.[quote="Antonio Linares":8bfe16s5]Ojo, en C, ^ sí es el operador "xor"[/quote:8bfe16s5] |
opos drivers for cash drawers mage strip readers printers | Has anyone an example of using the opos drivers for cash drawers, mage strip readers, printers etc.
Thanks In advance Mike |
opos drivers for cash drawers mage strip readers printers | Regards,
Otto
func ladeauf
LOCAL oPrn
LOCAL cPrnName := GetPvProfString( "LadeDruck", "DruckerName", "Generic / Text Only", ".\INI\TOUCH.INI" )
LOCAL oPrnDos
LOCAL oFntNormal
*----------------------------------------------------------------
if GetPvProfString( "Kassenlade", "INSTALLIERT" ... |
opos drivers for cash drawers mage strip readers printers | This is for DOS if you use windows then I does not matter which printer you address.
oPrnDOS := TDosPrn():New("LPT1")
oPrnDOS:Newline()
oPrnDOS:write(chr(27)+chr(33)+chr(32))
oPrnDOS:write(cFirma )
oPrnDOS:... |
opos drivers for cash drawers mage strip readers printers | This is code I use for the display.
func f_KUNDENDISPLAY
#ifdef KUNDENDISPLAY
LOCAL lReady
LOCAL nDelTime := 1
*--------------------------------------------
if aSetup[4]="J" //GetPvProfString( "SETUPDATEN","DSO800", "N", ".\INI\TOUCH.INI" )
WriteComm( DSP_COM, Chr... |
opos drivers for cash drawers mage strip readers printers | otto which cash and touch monitor you use ?
( model and macfature)
thanks |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.