Search found 1686 matches: position

Return to advanced search

Re: Cursor position in a get memo

oMGet:GetRow()
oMGet:GetCol()
by Antonio Linares
Sat Mar 09, 2024 6:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor position in a get memo
Replies: 2
Views: 151

Re: Cursor position in a get memo

Hola, prueba esto:        REDEFINE GET oObs ;                VAR cObs MEMO ;                ID 119 OF oDlg                oObs:bGotFocus = { || oObs:SetSel...
by Willi Quintana
Fri Mar 08, 2024 11:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor position in a get memo
Replies: 2
Views: 151

Cursor position in a get memo

how can I get the cursor position in a "get memo"?

ex:

xxxxx
yyyyy|(CURSOR POSITION)

oGet:GetCol() return 6

the correct one would be 11
by MGA
Fri Mar 08, 2024 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor position in a get memo
Replies: 2
Views: 151

Re: FW_DbfSqlQuery con campos mayores de 256 carracteres

... greater than 256 at the end of the table, in this way the information returned is correct since when it finds the end of the line the reading position is reset to the next record. It is not a 100% correct solution but it works for me, since normally I will not use fields greater than 256 for ...
by VictorCasajuana
Fri Mar 08, 2024 2:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW_DbfSqlQuery con campos mayores de 256 carracteres
Replies: 3
Views: 654

Re: A picture on top of the text

Sorry to jump in .... I could use it like this : https://www.maveco.be/fivewin/overlay.png A selected small image that position as a layover in a cell in the top right or top left position in order to show that these cells need extra care. This can be done with colors, but ...
by Marc Venken
Tue Mar 05, 2024 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A picture on top of the text
Replies: 3
Views: 212

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... Layout are   DATA   nTopMargin      INIT 16 but i just show Technic how to get Event, when Collaps, and "move" Panels to new Position where i start from TOP = 0 in my Layout it is up to you to change Layout like SPACE between TTaskPanel()   yPos +=aPanels[n]:nHeight ...
by Jimmy
Wed Feb 28, 2024 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 475

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... this is no good because the first panel can init from 18 and not from 0 row I not found the exact variable perhaps ::nTop ? as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel() yes but the first position of First TaskPanelPanel is never 0 Please try ...
by Silvio.Falconi
Wed Feb 28, 2024 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 475

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio,
Silvio.Falconi wrote:a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?

as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel()
by Jimmy
Tue Feb 27, 2024 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 475

Re: Add a new taskPanel on Explorerbar ( on line)

I think we would need a new method directly in the texplorerbar class to insert taskpanel in x position
I sent to Linares my Idea for two new methods
by Silvio.Falconi
Tue Feb 27, 2024 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a new taskPanel on Explorerbar ( on line)
Replies: 2
Views: 217

Re: Create a Panel width a text

... :!: i do not know if you want, using CalcTextHeight(), a "fixed" PANEL Layout :?: --- in my modify CODE all Lines are displayed and Position of Panel3 will change    aDim = GetLabelDim( oPanel2:hWnd, alltrim(cMessage), oFonttext:hFont ) GetLabelDim() will give you ...
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3186

Re: Controls behave different in Window as in Dialog

It is code for testing :wink: The webcam screen can be bigger, but it will always go to the left top position The idea is to use a webcam/camera with USB on top of the Robotarm. In case of Dialog, I get a error : Error Twebcam, Load driver error, Check webcam connection. ...
by Marc Venken
Sat Feb 24, 2024 11:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Controls behave different in Window as in Dialog
Replies: 2
Views: 154

Re: Create a Panel width a text

... :!: i do not know if you want, using CalcTextHeight(), a "fixed" PANEL Layout :?: --- in my modify CODE all Lines are displayed and Position of Panel3 will change    aDim = GetLabelDim( oPanel2:hWnd, alltrim(cMessage), oFonttext:hFont ) GetLabelDim() will give you ...
by Jimmy
Sat Feb 24, 2024 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3186

Re: Create a Panel width a text

... are DT_VCENTER / DT_CENTER look at FUNCTION FW_SayText() in c:\fwh\source\function\imgtxtio.prg when using more Lines oPanel2 "grow" but Position of oPanel3 are same so it will "override" --- i have modify you Sample, using MEMO/READONLY/NOSCROLL instead of (extra) PANEL, which ...
by Silvio.Falconi
Sat Feb 24, 2024 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3186

Re: Create a Panel width a text

... are DT_VCENTER / DT_CENTER look at FUNCTION FW_SayText() in c:\fwh\source\function\imgtxtio.prg when using more Lines oPanel2 "grow" but Position of oPanel3 are same so it will "override" --- i have modify you Sample, using MEMO/READONLY/NOSCROLL instead of (extra) PANEL, which ...
by Jimmy
Sat Feb 24, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3186

Re: SAPI : change Voice

... "Number" Events and meanings: 1 --> Start 3 --> An OLE object is received, probably self OLE object ? 5 --> Word, 4th param is position, 5th param is length 6 --> ??? 7 --> Sentence, 4th param is position, 5th param is length 8 --> ??? 2 --> End so i watch for   ...
by Jimmy
Wed Feb 14, 2024 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3552
Next

Return to advanced search

cron