Baxajaun Thanks for links.
Is there any sample I could use with FW?
Search found 15 matches
- Wed Oct 22, 2014 7:16 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TAPI Driver
- Replies: 7
- Views: 1514
- Wed Jul 10, 2013 7:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
Thanks a lot.
I'll Try it.
I'll Try it.
- Tue Jul 09, 2013 7:00 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
Fafi thanks a lot for help.
I'll try the code.
I must compile it with bcc? (I'm not so familiar to C)
I'll try the code.
I must compile it with bcc? (I'm not so familiar to C)
- Thu Jul 04, 2013 1:37 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
Where may I find PrintFileRaw() code?
- Thu Jul 04, 2013 6:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: createobject and greek characters
- Replies: 5
- Views: 1057
Re: createobject and greek characters
Finally I used the following statements.
REQUEST HB_CODEPAGE_ELWIN
hb_setcodepage('ELWIN')
But i need to change codepage to any function i use. Is there any way to set it public to program?
REQUEST HB_CODEPAGE_ELWIN
hb_setcodepage('ELWIN')
But i need to change codepage to any function i use. Is there any way to set it public to program?
- Thu Jul 04, 2013 6:19 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
I found code to .net for send raw data to a printer driver.
It uses winspool.drv functions.
My problem is how to declare the DOCINFO type
Private Declare Function StartDocPrinter Lib "winspool.drv" Alias _
"StartDocPrinterA" (ByVal hPrinter As Long, ByVal Level As Long, _
pDocInfo As DOCINFO ...
It uses winspool.drv functions.
My problem is how to declare the DOCINFO type
Private Declare Function StartDocPrinter Lib "winspool.drv" Alias _
"StartDocPrinterA" (ByVal hPrinter As Long, ByVal Level As Long, _
pDocInfo As DOCINFO ...
- Thu Jul 04, 2013 6:17 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
I Finally, used the Zebra Designer Driver Pass-through Mode and it works nice.
Here is the link https://km.zebra.com/kb/index?page=content&id=SO8099 with more information.
EPL2 is usefull when you need to print i.e. vertical Barcode and Horizontal description an price to a Label.
Here is the link https://km.zebra.com/kb/index?page=content&id=SO8099 with more information.
EPL2 is usefull when you need to print i.e. vertical Barcode and Horizontal description an price to a Label.
- Tue Jul 02, 2013 6:19 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TAPI Driver
- Replies: 7
- Views: 1514
Re: TAPI Driver
Thanks for help Michel. I'll try this.
Is there any documentation you know, about caller id?
Is there any documentation you know, about caller id?
- Mon Jul 01, 2013 4:14 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: TAPI Driver
- Replies: 7
- Views: 1514
TAPI Driver
Is there any library or Activex to use with FW++ for TAPI Drivers?
My Project is to connect to a center and :
a. Make phone calls from my application
b. Receive Incoming Calls (caller id) using TAPI of center.
My Project is to connect to a center and :
a. Make phone calls from my application
b. Receive Incoming Calls (caller id) using TAPI of center.
- Mon Jul 01, 2013 4:10 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Re: Send EPL Command to a USB printer
With the USB Zebra Printer, you don't need to send EPL-commands.
Normaly there is a windows-driver, and you can use that printer with FWH, like a normal printer
Marc Thanks for your reply.
I allready use the Zebra Driver to print Labels. But now I need to print to "too small" labels and special ...
Normaly there is a windows-driver, and you can use that printer with FWH, like a normal printer
Marc Thanks for your reply.
I allready use the Zebra Driver to print Labels. But now I need to print to "too small" labels and special ...
- Mon Jul 01, 2013 9:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Send EPL Command to a USB printer
- Replies: 14
- Views: 4611
Send EPL Command to a USB printer
I try to send EPL commands to a USB Zebra Printer but I cannot.
How may I Use the tPrinter class to send only commands (raw data?)
With lpt printer i send data to lpt1. With usb I cannot do this.
How may I Use the tPrinter class to send only commands (raw data?)
With lpt printer i send data to lpt1. With usb I cannot do this.
- Tue Mar 12, 2013 1:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: createobject and greek characters
- Replies: 5
- Views: 1057
Re: createobject and greek characters
Enrico
The same problem occures when I open an xml file using CreateObject("Microsoft.XMLDOM"). I cannot read Greek characters.
The same problem occures when I open an xml file using CreateObject("Microsoft.XMLDOM"). I cannot read Greek characters.
- Tue Mar 12, 2013 9:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: createobject and greek characters
- Replies: 5
- Views: 1057
Re: createobject and greek characters
Is there any news for this topic?
- Fri Aug 31, 2012 8:26 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: createobject and greek characters
- Replies: 5
- Views: 1057
createobject and greek characters
When I use an external object using createobject() or ActiveX I cannot read or write greek characters.
For example if you change, into excel2.prg (to samples folder) the line
oSheet:Range( "B2" ):Value = "John"
as
oSheet:Range( "B2" ):Value = "Γιάννης"
// something like oSheet:Range( "B2 ...
For example if you change, into excel2.prg (to samples folder) the line
oSheet:Range( "B2" ):Value = "John"
as
oSheet:Range( "B2" ):Value = "Γιάννης"
// something like oSheet:Range( "B2 ...
- Fri Aug 31, 2012 8:18 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: shell.explorer Activex and Keyboard
- Replies: 4
- Views: 1112
shell.explorer Activex and Keyboard
When I use the shell.explorer activeX to a window, then user cannot use keyboards into forms to change fields.
You can see the problem to webexp.prg (into samples) if you try to navigate google.com.
Into this page the key "Tab" "doesn't work".
Is there any idea how may I try permit the use of ...
You can see the problem to webexp.prg (into samples) if you try to navigate google.com.
Into this page the key "Tab" "doesn't work".
Is there any idea how may I try permit the use of ...