topic
stringlengths
1
63
text
stringlengths
1
577k
Bluetooth print and Special characters
Richard, > i do not know the ascii character but i can display them it if necessary Please place a MsgInfo() to check their asc() values, thanks
Bluetooth print and Special characters
Antonio first one is 233 Do you need them all ? <!-- s:x --><img src="{SMILIES_PATH}/icon_mad.gif" alt=":x" title="Mad" /><!-- s:x --> Richard
Bluetooth print and Special characters
Richard, Just two more, please
Bluetooth print and Special characters
232 224
Bluetooth print and Special characters
231 249 176
Bluetooth print and Special characters
Richard, Characters with ascii over 128 are printing right ? I wonder if it is a sign issue
Bluetooth print and Special characters
Antonio I do not have the printer here at home but at the office. I can check all ascii chars tomorrow early morning and report back. If you need any more testing, drop me a line Regards Richard
Bluetooth print and Special characters
Antonio Confirmed, it is a sign issue Ascii codes up to 127 are printed correct not the others. I sent to your private email a pdf showing a print out of all ascii codes. Richard
Bluetooth print and Special characters
Richard, Please test this function and place a #define WriteByte _WriteByte in your app: [code:2l9fnno8] HB_FUNC&#40; _WRITEBYTE &#41; // hComm, nChar --> lOk &#123; DWORD cBytes; unsigned char ch = &#40; unsigned char &#41; hb_parnl&#40; 2 &#41;; hb_retl&#40; &#40; BOOL &#41; WriteFile&#40; &#40; void *...
Bluetooth print and Special characters
Antonio Same result Richard
Bluetooth print and Special characters
Richard, We are searching info for WriteFile() use to manage unsigned chars
Bluetooth print and Special characters
Antonio No problem I have the printer available all week end if you need some testing. Let me know. Richard
Bluetooth print and Special characters
Richard, Could you please try this: [code:2rvqm0y3] HB_FUNC&#40; WRITE233 &#41; // hComm --> lOk &#123; DWORD cBytes; unsigned char ch = 233; hb_retl&#40; &#40; BOOL &#41; WriteFile&#40; &#40; void * &#41; hb_parnl&#40; 1 &#41;, &ch, 1, &cBytes, NULL &#41; &#41;; &#125; [/code:2rvqm0y3] Just to chec...
Bluetooth print and Special characters
Antonio No it is not good This is the sample i am using (just to check the syntax) I had to remove the INT RC (compile error) #include "C:\FWPPC\INCLUDE\FWCE.ch" #define GENERIC_READ 0x80000000 #define GENERIC_WRITE 0x40000000 #define GENERIC_REWRITE 0xC0000000 #define OPEN_EXISTING 3 #define FILE_ATTRIBUTE...
Bluetooth print and Special characters
[quote="Antonio Linares":dhw2rkep][code:dhw2rkep] HB_FUNC&#40; WRITE233 &#41; // hComm --> lOk &#123; DWORD cBytes; unsigned char ch = 233; hb_retl&#40; &#40; BOOL &#41; WriteFile&#40; &#40; void * &#41; hb_parnl&#40; 1 &#41;, &ch, 1, &cBytes, NULL &#41; &#41;; &#125; [/code:dhw2rkep][/quote:dhw2rkep...
Bluetooth print and Special characters
Enrico, From Windows headers: typedef void *HANDLE; Its quite strange why WriteFile() is not able to manage unsigned chars...
Bluetooth print and Special characters
Antonio This is from Pocket pc Msdn Does it make any sense in this case ? You should note that the lpBuffer parameter of WriteFile is a LPCVOID (typedef for const void *). That means the lpBuffer parameter is type-agnostic. You could make it point to an array of chars, or you can make it point to an array of WCHAR...
Bluetooth print and Special characters
Richard, It does not make a difference. We are placing an unsigned char into the buffer and WriteFile() should transmit an unsigned char. Could you try to send the data to a different bluetooth device ? Maybe the difference comes from the receiver
Bluetooth print and Special characters
Richard, Does that printer work with unicode chars ?
Bluetooth print and Special characters
Antonio The printer is OK There is no setting on it. When i send the txt file to the printer via windows mobile (send via bluetooth), the printout is OK. The problem is i the writefile function Richad
Bluetooth print and Special characters
I don't have the documentation of the printer available here, but i will take a look at it tomorrow morning. My guess is "Yes" it takes Unicode, see my previous post.
Bluetooth print and Special characters
Antonio The printer works with Unicode It is a brand new HP Deskjet 460 I tried it also on another BT printer (Epson), same problem. Looks like we have a problem with accented characters. I have a work around but can not find the appropriate C code for it. Maybe you can help ? I want to print a txt file from fwp...
Bluetooth print and Special characters
Richard, Please try this: [code:rp0ak8fr] HB_FUNC&#40; WRITE233 &#41; // hComm --> lOk &#123; DWORD cBytes; WCHAR ch = 233; hb_retl&#40; &#40; BOOL &#41; WriteFile&#40; &#40; void * &#41; hb_parnl&#40; 1 &#41;, &ch, sizeof&#40; ch &#41; , &cBytes, NULL &#41; &#41;; &#125; [/code:rp0ak8fr]
Bluetooth print and Special characters
Same result Bad character printed. Richard
Bluetooth print and Special characters
Are you able to read what exactly comes out of the palmtop? EMG
Bluetooth print and Special characters
Enrico What do you mean by this ? i do not understand Richard
Bluetooth print and Special characters
Till now you only know that the printer won't print what you expected. It would be useful to know what number(s) really comes out of the palmtop instead. EMG
Bluetooth print and Special characters
How can i know that ?
Bluetooth print and Special characters
This is the result <!-- m --><a class="postlink" href="http://www.cbati.com/scanprint.jpg">http://www.cbati.com/scanprint.jpg</a><!-- m --> it should display "é"
Bluetooth print and Special characters
[quote="Richard Chidiak":1ihl4f45]How can i know that ?[/quote:1ihl4f45] As an example, connecting the bluetooth to a PC? EMG
Bluetooth print and Special characters
Enrico From pc, everything prints out ok on the same printer I already tested it. Richard
Bluetooth print and Special characters
[quote="Richard Chidiak":3olyde6q]Enrico From pc, everything prints out ok on the same printer I already tested it. Richard[/quote:3olyde6q] No, you still haven't understood what I'm saying. You may try to print from your palmtop connecting it to a PC instead of a printer. That way you can see what exactly comes o...
Bluetooth print and Special characters
Enrico I had tried that but nothing displays on the pc or maybe i was unable to configure it correct. Though i can transfer files via bt from pocket to different pcs. Any clue on how to do it or what i may have missed ? Tia Richard
Bluetooth print and Special characters
No, sorry. My knowledge on real palmtops is about zero. I only use the emulator. I can imagine that you have to setup the serial port of your PC, use a program to receive the numbers sent from the palmtop and display them on the screen. EMG
Bluetooth print and Special characters
I did try all the possibilities but did not see any chars appear. I do not know how to do it. <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
Bluetooth programming readings
[url:2emb2bgw]https&#58;//people&#46;csail&#46;mit&#46;edu/albert/bluez-intro/index&#46;html[/url:2emb2bgw]
Bluetooth serial port
I need 2-way comms to a Bluetooth 'Flic' scanner (to handle the out of range protocol), but always get a port handle of -1 and no response. For testing I have added a 'read' section to sample program 'bluetoth' using code as earlier posts and am attempting to retrieve each character via Chr(bin2l( ReadByte( hIn ) ) ) ...
Bluetooth serial port
Jon, We discussed the bluetooth issue here, and finally got it working using CreateFile() function call. Is that the one you are using too ?
Bluetooth serial port
Antonio, Yes, I'm using the same method as used by Jose with the printer and in your 'bluetoth' sample. I have a variant 'blueread' : // BlueRead #include "FWCE.ch" #define GENERIC_READ 0x80000000 #define GENERIC_WRITE 0x40000000 #define OPEN_EXISTING 3 #define FILE_ATTRIBUTE_NORMAL 0x00000080 function Mai...
Bluetooth serial port
Jon, Please notice that you should use GENERIC_READ instead of GENERIC_WRITE.
Bluetooth serial port
Antonio, Some progress - after re-booting the emulator and using only COM1 I can get a port handle number like 230603634, which I assume is OK and similar to running on an Intermec 700C. I'm not able to retrieve characters from the buffer though and repeatedly only get asc(156). How should I read from the communication...
Bluetooth serial port
Notes for newbies on Emulator Serial Ports (MSDN Forums - Device Emulator General 29 Nov 2005) Serial Port 0: appears inside the emulator as COM1: that apps can use. Serial Port 1: reserved for WinCE kernel, doesn't have a driver, do not use it. ie 'com2:' is not available. Serial Port 2: the IRDA port and assigned the...
Bluetooth serial port
jon I in need for the contact between the pocket pc from Bluetooth to computer Sending a file represented or received a file I testing all fwppc sources the available and did not run Do there is solution Best Regards HATHAL
Bluetooth serial port
Hathal, Have you considered ActiveSync or other serial comms program with Bluetooth? Possibly less painful. I only need a few basic functions. regards, saludos
Bluetooth serial port
[quote="Jon Munro":2in9qy2f]Hathal, Have you considered ActiveSync or other serial comms program with Bluetooth? Possibly less painful. I only need a few basic functions. regards, saludos[/quote:2in9qy2f] jon I want function with Fwppc source Best Regards HATHAL
Bluetooth serial port
Hathal, Define a single port with mode 0xC0000000 to get 'read-write'. You may find that 'nChr := bin2l( ReadByte( hIn ) )' will return single characters (as asc value) from data received. 'BillSerialMonitor' (freeware) from <!-- w --><a class="postlink" href="http://www.symcod.com">www.symcod.com</a><!-- w --> is ver...
Bluetooth serial port
[quote="Jon Munro":2cvf4v0i] I've grafted fragments of FWPPC 'comm.c' into parts of Harbour Telepathy (port by Luiz Rafael Culik Guimaraes) and have a working FWPPC test program that reads from a barcode scanner and can send acks, etc. Nearly there... Regards and happy and successful 2006 to all <!-- s:-) --><img src="...
Bluetooth serial port
Raymond, The FWPPC comms functions work well, for example: #define GENERIC_READ 0x80000000 #define GENERIC_WRITE 0x40000000 #define GENERIC_REWRITE 0xC0000000 #define OPEN_EXISTING 3 #define FILE_ATTRIBUTE_NORMAL 0x00000080 ... ... ... STATIC FUNCTION OPENCOMM( nPort ) // Open port for read/write local hPort...
Bluetooth serial port
Many thanks, I will give it a try. I need to read complete messages but I am sure this is not a problem as long as I can read a character. Best Regards, Raymond
Bluetooth serial port
Thanks for the info. Based on it I have been able to get the data from a Btooth GPS. I still have a problem to get the data from a serial one. I can read the serial GPS but I only get invalid data. Here is my com port opening : [code:3rzbjec3]STATIC FUNCTION OPENCOMM&#40;nPort&#41; // Ouvrir le port en lecture LOCAL...
Bluetooth serial port
[quote="Raymond Fischbach":1vo0i2hi]I could not find the documentation of the "CreateFile" function. Can you tell me where to look ?[/quote:1vo0i2hi] On the MSDN. EMG
Bluetooth support
Hi Everybody, Is it possible to communicate with a Bluetooth device via FWH ? If yes, are there any samples? Thanks, Jeff
Bluetooth support
<!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=5347">http://fivetechsoft.com/forums/viewtopic.php?t=5347</a><!-- m -->
Blur effect!!!
He estado haciendo pruebas con el efecto de empañado, y funciona perfectamente en mi computador de escritorio, con Windows 7 y 4gb de Memoria, pero en mi laptop (Intel Centrino) y mi AllInOne (Atom), ambas con 2 Gb de Memoria y Windows XP, no me funciona correctamente, la mayoria del tiempo empaña 1 control, a veces 2...
Blur effect!!!
Bayron disculpa, he querido probar el efecto Blur también para conseguir el efecto de que no sea una cosa inmediata y no se si lo hago bien. Si lo pongo en ON PAINT no me efectúa el efecto deseado. [code=fw:2o85pggs]<div class="fw" id="{CB}" style="font-family: monospace;">  <span style="color: #0000ff;">ACTIVATE</spa...
Blur effect!!!
Si pongo un for next, no me crea bien el efecto ya que solo lo hace en los controles que tiene el dialogo y no en todo el dialogo. ¿Alguien sabe como crear el efecto pero de todo el dialogo? Prueben de añadir el for next en el blur, cuando se pulsa ok, se muestra el efecto pero con un pequeño rebote al final. Bueno son...
Blur effect!!!
Bayron prueba colocar un sysrefresh() antes de empezar el proceso del blur Andres oDialog:refresh() sacalo del FOR/NEXT
Blur effect!!!
Gracias Daniel, funcionó perfectamente!!! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Blur effect!!!
Andres, intenta este codigo: [code=fw:233h0za8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />....<br />....<br />....<br />     <span style="color: #0000ff;">ACT...
Blur effect!!! /// RibbonBar ::FiveTech
Daniel, El problema del BLUR ya está resuelto, no sé ni que le moví, pero ahora funciona correctamente... Ahora el problema es con el pintado del RibbonBar, y éste apareció despues de que definí la ventana principal colocando el estilo: [color=#FF0000:2gdaud91]STYLE nOr( WS_POPUP )[/color:2gdaud91], si quito este est...
Blur effect!!! /// RibbonBar ::FiveTech
Daniel, Este codigo reproduce el error... Hay botones en la parte superior derecha para las funciones basicas de la ventana... (Por favor intenta a Maximizar/Restaurar la ventana) [code=fw:352614x5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#INCLUDE</span> <span style="col...
Blur effect!!! /// RibbonBar ::FiveTech
Hola, Al intentar usar el efecto Blur en una ventana con RibbonBar, ésta hace el efecto, pero la RibbonBar no lo hace... Al hacerlo sobre el objeto de la RibbonBar, solamente los tabs hacen el efecto, pero no los botones pintados sobre ella... [img:3368rhzj]http&#58;//www&#46;mayapos&#46;com/FiveWin/puntotactil8&#46;...
Blur effect!!! /// RibbonBar ::FiveTech
Bayron intenta hacerlo sobre la ventana principal no sobre la ribbon
Blur effect!!! /// RibbonBar ::FiveTech
Hola Daniel, Eso fue lo primero que hice, pero ni siquiera tocó la RibbonBar... al menos no lo hizo ayer, hoy si está trabajando bien??? Hice algunas pruebas, aparentemente el problema de pintado en los grupos (ya no tiene nada que ver con el efecto Blur) me lo da al colocar STYLE nOr( WS_POPUP ); en el ejemplo ribb...
Blur effect!!! /// RibbonBar ::FiveTech
Aquí te muestro el problema: [url:2h1zg7z7]http&#58;//www&#46;youtube&#46;com/watch?v=YAqTucM2Pzw[/url:2h1zg7z7] para Maximizar la ventana solamente uso oWnd:Maximize()
Blur effect!!! /// RibbonBar ::FiveTech
Bayron trata de cocinar esta idea este link te puede servir para las opciones del GetSysMetrics [url:37f3dqr8]http&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms724385(v=vs&#46;85)&#46;aspx[/url:37f3dqr8] oDialog es la ventana principal y retorno [code=fw:37f3dqr8]<div class="fw" id="{CB}" styl...
Blur effect!!! /// RibbonBar ::FiveTech
La RibbonBar no refresca cuando regreso del efecto Blur, como lo tengo ahora y tambien con el ejemplo que tu pusiste.... Le he colocado un SysRefresh(), oWnd:Refresh() y oRBr:Refresh(), pero no funciona... [url:2w9oa990]http&#58;//www&#46;youtube&#46;com/watch?v=SY7EaGB_8bs[/url:2w9oa990]
Blur effect!!! /// RibbonBar ::FiveTech
Daniel y Equipo FiveTech, 1 He encontrado una forma temporal de refrescar la RibbonBar al momento de entrar a mi programa: [code=fw:2oxbth5z]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">on</span> <span style="color: #0000ff;">init</span> <span style="color: #000000;">&#40;</s...
Blur effect!!! /// RibbonBar ::FiveTech
He logrado Refrescar la RibbonBar, con esta funcion: [code=fw:k0n129ee]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> RefRBar<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />    <span style="color: #00C800;">For</span> n ...
Blur effect!!! /// RibbonBar ::FiveTech
Bayron prueba esto, el boton dentro del grupo hace el efecto blur [code=fw:98n85pux]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#INCLUDE</span> <span style="color: #ff0000;">"FiveWin.CH"</span> &nbsp;<span style="color: #B900B9;">//FWH10.2</span><br /><span style="col...
Blur effect!!! /// RibbonBar ::FiveTech
Daniel, Gracias por contestar... No probé tu ejemplo completamente porque mi version de fivewin es la 10.2.. pero probe con: [code=fw:h5rbojn9]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">on</span> <span style="color: #0000ff;">init</span> oWnd:<span style="color: #0000ff;">...
Blur effect!!! /// RibbonBar ::FiveTech
HOLA ese efecto Blur esta super <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> es de fivewin o codiguito tuyo <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> Saluditos <!-- s:wink: --><img src="{SMILIES_P...
Blur effect!!! /// RibbonBar ::FiveTech
Hola si esta incluido en fivewin
Blur effect!!! /// RibbonBar ::FiveTech
Muchas gracias creo que a mi ya no me toco tenerla esta genial Saluditos <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
Blur effect!!! /// RibbonBar ::FiveTech
[quote:222ttnhh]creo que a mi ya no me toco tenerla esta genial[/quote:222ttnhh] AIDA, Si puedes usarla en tu version de FiveWin, yo uso la 10.2, y creo que tu tienes una mas reciente: Para usarla solo tienes que enviarle el dialogo, Ventana o Control que quieres hacerle el efecto y darle un Refresh() al volver...
Blur?
Hi All, I have a dialog and call another dialog( get or read data ), back to to first dialog. First dialog background have second dialog background like blur. This problem does not occur in all users. Sometimes or for a long time to appear. I want to know it's FWH problem or computer device problem? Now, I test fwh1...
Blur?
Richard, Please try with current FWH version, or a more recent version, thanks
Blur?
[quote="Antonio Linares":1w0ks6ux]Richard, Please try with current FWH version, or a more recent version, thanks[/quote:1w0ks6ux] OK. I will try it. Thanks.
Bmp en ListBox
Srs.Tengo un List Box que muestra los datos de mi tabla de articulos, bien, cuando el usuario elige el articulo que quiere, quiero mostrar la imagen del articulo.1-List Box2-Eleccion3-Mostrar la ImagenTengo el List Box y la funcion para Mostrar la Imagen, pero cuando le dan el click sobre el producto, me da error.de qu...
Bmp en ListBox
Oscar,Que error te da ? Por favor copia aqui el error, gracias
Bmp en ListBox
[quote="Antonio Linares":bpproe8s]Oscar, Que error te da ? Por favor copia aqui el error, gracias[/quote:bpproe8s]El error es el Siguiente:Message not FoundTDIALOG:INV_SHOWArg:[ 1]=O ObjectStack Calls:_errt_sbaseTDIALOG ERROR(172)MAS LAS DESCRIPTIVAS DE ORIGEN.ESTA FUNCION LA SAQUE Y CREE UNA VENTANA PRINCIPAL Y CORRE...
Bmp en ListBox
Oscar,En que parte de tu PRG se llama al método :INV_SHOW() ?Puedes copiar aqui esa porción de código ? gracias
Bmp en ListBox
[quote="Antonio Linares":3r2kmccz]Oscar, En que parte de tu PRG se llama al método :INV_SHOW() ? Puedes copiar aqui esa porción de código ? gracias[/quote:3r2kmccz]*---------------------------STATIC FUNCTION Sel_Invent_dlg()*--------------------------- LOCAL oFont,oFont2 local oSay, cSearch := "" DEFINE FONT...
Bmp en ListBox
Hola Oscar:Creo que tu problema está en esta línea:REDEFINE BUTTON ID 800 OF o[ O_DLG_INVE ] ACTION o[ O_DLG_INVE ]:inv_show() Debería quedar así:REDEFINE BUTTON ID 800 OF o[ O_DLG_INVE ] ACTION inv_show()Saludos.Manuel Mercado
Bmp en TXBrowse con Array
Estimados, Muestro un Array con la TXBrowse y necesito poner un Bmp cuando un registro logico tiene .T. o .F. si utilizo la TXBrowse con datos de la DBF directamente funciona bien, pero no logro hacer lo mismo cuando la utilizo con información desde un Array.. alguien me puede echar una mano. Aqui les dijo un compac...
Bmp+get+mouse (SOLUCIONADO)
Saludos amigos. Tengo un dialog normal con un Bitmap incrustrado. Sobre este bmp, creado con GIMP, he puesto algunos gets (char y numerics). Ahora bien, el problema es el siguiente: 1- Teclas UP, DOWN trabajan bien. 2- TAB trabaja bien 3- CLICK del mouse para cambiar de get, NO FUNCIONA. No hace nada. Trabajo con ...
Bmp+get+mouse (SOLUCIONADO)
Solucionado...! <!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=6&t=20102&hilit=get+sobre+bitmap&start=15#p107949">viewtopic.php?f=6&t=20102&hilit=get+sobre+bitmap&start=15#p107949</a><!-- l --> Saludos.
BmpToHex
Alguien tiene alguna utilidad que realice la tarea contraria?, es decir, coja la cadena hexadecimal y la convierta en fichero .bmp? Teniendo en cuenta que tengo la cadena hexadecimal pero no tengo el fichero .bmp
BmpToHex
HexToStr()
BmpToHex
[quote="SGS":2m0p9v5y]HexToStr()[/quote:2m0p9v5y] Pues evidente, gracias Hay dias que nos proponemos reinventar la rueda. <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><...
BmpToHex
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Bold on Menuitem
is it possible show a word on menuitem on Bold or one menuitem ?
Bold on Menuitem
Silvio, It does not serve him well? [quote:1j4crqv5] #xcommand MENUITEM [ <oMenuItem> PROMPT ] [<cPrompt>] ; [ MESSAGE <cMsg> ] ; [ <checked: CHECK, CHECKED, MARK> ] ; [ <enable: ENABLED, DISABLED> ] ; [ <file: FILE, FILENAME, DISK> <cBmpFile> ] ; [ <re...
Bold on Menuitem
yes of corse BUT I wish create this "Open [b:18ob2x6m]Bollette[/b:18ob2x6m]"
Bold text on a button bar
Hello all: In my app I have a button bar initialized: DEFINE BUTTONBAR oBar SIZE 73.5 ,78 2007 OF oWnd1 Works fine. I have text on the bar...so far no problem. This code is coloring the text : oBar:nClrText = nRGB( 0, 0, 128 )...This Works fine My question is how can i get the text on the bar in BOLD. Any h...
Bold text on a button bar
Harvey, Try: define font oFont "Arial" size 0, -8 bold oBar:setFont( oFont ) James
Bold text on a button bar
James: Doesnt work. Here is all the code. [code=fw:1ngbdbi0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">//Define the button</span><br /><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTONBAR</span> oBar   <span style="color: #00...
Bold text on a button bar
Harvey, It looks like you want bold text on the button not the bar. I expect you need to define the button font not the bar font. James
Bold text on a button bar
Thanks for getting back to me. I looked in FWH help and it says... define button prompt "help" of oBar FONT oFont1... Font oFont1 should work. It doesn't. Any other ideas?
Bold text on a button bar
Harvey, there are some post, I talked about this problem. With more tests on VTitle, I think it is a good Replacement for Buttonbars, if You want to do something special and create Your own Buttonbar. Button-Actions are added in FWH-0.08 and Tooltips will still be included by Daniel. Another Test with [color=#FF000...