Search found 23 matches: wantreturn

Return to advanced search

Re: FolderEx + TTitle + RTF: TTitle and RTF not working

The following works! Thanks Antonio.
Antonio Linares wrote:In your first three RichEdit controls in the RC you missed to use ES_WANTRETURN


How to code so each RichEdit control has its own TBar as shown in this mock up?
Image
by hua
Tue Oct 11, 2022 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx + TTitle + RTF: TTitle and RTF not working
Replies: 8
Views: 685

Re: FolderEx + TTitle + RTF: TTitle and RTF not working

Dear Hua,

In your first three RichEdit controls in the RC you missed to use ES_WANTRETURN
by Antonio Linares
Thu Oct 06, 2022 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx + TTitle + RTF: TTitle and RTF not working
Replies: 8
Views: 685

Re: Detalle con un GET

Hola Armando, mira si este post te ofrece alguna solucion. ( ES_WANTRETURN )
viewtopic.php?f=3&t=18350&p=96243&hilit=wantreturn&sid=de248c1e08597ede02712580c30ddb2c#p96243
by FranciscoA
Sat May 28, 2022 3:29 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detalle con un GET (RESUELTO)
Replies: 4
Views: 348

Listbox displays incorrect data

Hello Everyone, We have a problem with a specific LISTBOX. For some reason, the listbox is displaying incorrect details, specifically when no key is found. The associated DBF has an index related to the specific key. What would cause this problem? I have checked the DBF for corruption and I have del...
by cdmmaui
Sat Jul 28, 2018 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox displays incorrect data
Replies: 13
Views: 2244

Re: Unwanted system-popup on xBrowse-right-cellmouseclick

Uwe, TOUR3 DIALOG -17, -94, 618, 283 STYLE WS_CHILD FONT 10, "Arial" { EDITTEXT 110, 17, 18, 397, 239, ES_MULTILINE | ES_AUTOVSCROLL | ES_WANTRETURN | WS_BORDER | WS_VSCROLL | WS_TABSTOP } Not is XBROWSE control Menu popup is the Edit Control USE "PFLEGER" NEW SHARED ALIAS "...
by cnavarro
Mon Jul 25, 2016 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unwanted sys-popup on xBrowse-right-cellclick (solved)
Replies: 7
Views: 1807

Re: MIGRACION DE XHARBOUR A HARBOUR

He modificado el codigo, pero sigue saliendo lo mismo: Warning W8075 TSCAN.prg 495: Suspicious pointer conversion in function HB_FUN_TW_GETNEXTSOURCENAME Warning W8075 TSCAN.prg 505: Suspicious pointer conversion in function HB_FUN_TW_GETDEFAULTSOURCENAME Por otro lado, cuando llama a un dialogo con...
by Manuel Valdenebro
Wed Jun 25, 2014 4:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MIGRACION DE XHARBOUR A HARBOUR
Replies: 29
Views: 5335

Re: MemoEdit, Multi-Line Get MEMO from Resources

João

Awsome!! Thank you VERY much .. in comparing the two forms the main difference was ES_WANTRETURN ?

Thanks
Rick Lipkin
by Rick Lipkin
Thu May 15, 2014 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MemoEdit, Multi-Line Get MEMO from Resources
Replies: 3
Views: 924

Re: Problem Clicking on Fields in Dialog

Antonio, Here is the PRG and part of RC, the WR1 listed below is only dialog that has this behavior. Please note everything was working fine until I updated with Pelles C IDE. // PRG........ DEFINE ICON oIcon RESOURCE "WMS" DEFINE DIALOG oDlg RESOURCE "DATAENTRY" TITLE cTitle ICO...
by cdmmaui
Thu Nov 07, 2013 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem Clicking on Fields in Dialog
Replies: 11
Views: 3866

Re: rc/res to source

but you can save the rc on @x,y ... ? and how ? I see only for a sample // Generated by ResEdit 1.5.5 // Copyright (C) 2006-2010 // http://www.resedit.net HINSTANCE hInst = GetModuleHandle(0); WNDCLASSEX wcex; ZeroMemory(&wcex, sizeof wcex); wcex.cbSize = sizeof wcex; wcex.hbrBackground = (HBRUS...
by MdaSolution
Tue Aug 02, 2011 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: rc/res to source
Replies: 4
Views: 996

difference between xp and seven

Is it normal this difference? (see below screen shots) Thanks in advance Marco >>fold.prg<<< #include "fivewin.ch" FUNCTION MAIN() LOCAL oDlg LOCAL oFld LOCAL aFld := { } LOCAL oSay1 , cSay1 := "First" LOCAL oGet1 , cGet1 := SPACE( 10 ) LOCAL oSay2 , cSay2 := "...
by MarcoBoschi
Mon Mar 21, 2011 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: difference between xp and seven
Replies: 14
Views: 5238

Re: Bug in REDEFINE SAY?

Hi Ruediger Re: text display ........................reprehend <end> It looks like you have reached the limit of a character field. 255 happends to be the mac character field in clipper/dbase file. Maybe it is the version of harbour that has changed to enforce the limit? Try using MsgInfo() to...
by Jonathan Hodder
Tue Mar 15, 2011 9:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in REDEFINE SAY?
Replies: 12
Views: 4109

Re: Multiline GET - CRLF

multiline GET has not ever been handling the Return key properly. True even if defined in resources. Ottos code should work as the button acts as a wait state. When user decides to go to another task (eg another window) no event is activated in TMultiGet. I had no wait state in my code - customers ...
by Jonathan Hodder
Wed Mar 17, 2010 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiline GET - CRLF
Replies: 12
Views: 2784

Re: Multiline GET - CRLF

Otto, I just looked at the code from the TMulitGet (the New() method) and it seems that the style it already including "wantreturn" and "mulitline." Even a version from 2000 was this way, so perhaps the multiline GET has not ever been handling the Return key properly. ...
by James Bott
Wed Mar 17, 2010 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiline GET - CRLF
Replies: 12
Views: 2784

Re: Multiline GET - CRLF

Sir,

Just add this style to your resource:

ES_WANTRETURN|ES_MULTILINE


Regards,
FAP
by fraxzi
Wed Mar 17, 2010 12:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiline GET - CRLF
Replies: 12
Views: 2784

Re: fwh\samples\RE.prg - FiveWin Resources Editor underrated

After a long time I had again a look into re.prg. I changed the code to get the ID of the control into the dialog. But I can’t find out how to do with comboboxes. It would also be fine to have the caption of the says. The dialog is saved to clipboard and you can paste it to your source code. Would y...
by Otto
Sun Aug 30, 2009 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh\samples\RE.prg - FiveWin Resources Editor underrated
Replies: 38
Views: 11652
Next

Return to advanced search