Search found 493 matches: limit

Return to advanced search

Re: Timers and loops

... in * HB_EXECFROMARRAY() function, to the list of background tasks that will * be evaluated in concurrency with the main program. * There is no limit for the number of tasks. * * Tasks must be activated using the command * SET BACKGROUND TASKS ON * or the Set() function * Set( _BACKGROUND_TASKS, ...
by Enrico Maria Giordano
Fri Feb 19, 2010 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Timers and loops
Replies: 52
Views: 12018

Re: XBrowse Array Incremental Search

OK ... this is a 3 element array so I want to do the seek on element 3. It is in the first column.

As your code is written it does not move the array ...

How can I limit to column 1, element 3 for the seek ?
by TimStone
Tue Feb 09, 2010 8:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Array Incremental Search
Replies: 15
Views: 6273

Re: Memory error with FiveWin + xHarbour.com

... _hb_xfree (etc), these functions are both in OptG.lib and xHB.lib. I've tried to remove the OptG.lib from the xlink command line and the limit growth to 2 giga. So, anybody knows what is this lib used for? I suppose that I'd ask this in the xHarbour.com newsgroup.
by Patrizio
Tue Jan 26, 2010 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memory error with FiveWin + xHarbour.com
Replies: 14
Views: 6063

Re: Ribbon Limit

FOUND !!!!!!!!!!! #include "fivewin.ch"*************function MAIN*************local oDlgdefine dialog oDlg from 0, 0 to 400, 600 pixel* Posiciona o cursor do mouse@10, 10 button "Posicionar" of oDlg action setcursorpos( 200, 300 )     pixel* Mostra o Mouse na Te...
by MdaSolution
Mon Jan 25, 2010 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Mr Antonio, I can call clipcursor function ? DllImport("user32.dll", CharSet:=CharSet.Auto, ExactSpelling:=True)> Public Shared Function ClipCursor(ByRef rcClip As RECT) As BooleanEnd Function I found on foxpro DECLARE SHORT ClipCursor IN user32 STRING lpRect http://www.news2news.com/vf...
by MdaSolution
Mon Jan 25, 2010 11:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

I make a try and I have the same value :

oSprite is the bitmap

oSprite:bMoved := { | nRow, nCol | msginfo(oRbar:nheight,oSprite:nTop) }
by MdaSolution
Sat Jan 23, 2010 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

The moving window can paint the bitmap on its own surface. Its simple.
by Antonio Linares
Sat Jan 23, 2010 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Thanks Maestro,
But I have a bitmap to move into a ownd with ribbon control and I must not move a window on the screen.
I need it to create a plan of the room of restaurant, to set the tables.
by MdaSolution
Sat Jan 23, 2010 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

When you use the DATA lDrag, the bitmap can be moved over all its container surface. Instead of using lDrag, it may be better to use a non caption and non border window, and move it, so you can supervise and control its coordinates: FWH\samples\TestMMov.prg // Moving a window, with the mouse, withou...
by Antonio Linares
Sat Jan 23, 2010 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Antonio, (?) Yo y mi amigo que usted sabe que estamos trabajando juntos en otro proyecto para un restaurante También hemos usado ese MdaSolution cuenta que es mi empresa italiana Traté de hacer una pequeña prueba para que usted trate de resolver el problema Cuando se mueve el bitmap que se oculta ba...
by MdaSolution
Fri Jan 22, 2010 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Domenico, (?)

MSetBounds() seems to be for text mode applications and probably it will not work for GUI apps.

Please provide a more complete example using oSprite so we can understand what you want to do and we can provide you a better help, thanks :-)
by Antonio Linares
Fri Jan 22, 2010 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Antonio, I found on xharbour.com guide MSetBounds( [<nTop>], [<nLeft>], [<nBottom>], [<nRight>] ) --> NIL Arguments <nTop> A numeric value indicating the screen coordinate for the top boundary of the restricting rectangle. The default value is 0. <nLeft> A nume...
by MdaSolution
Fri Jan 22, 2010 8:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

thanks Antonio, But with fivewin we not have any function to set it ? I use this code to move the bitmaps @ nRow, nCol BITMAP oSprite; RESOURCE cBitmap; PIXEL NOBORDER of oWnd oSprite:lTransparent = .T. oSprite:Move(oSprite:nTop,; oSprite:nLeft,; ,; ) oSprite:lDrag := .T. oSprite:bMoved := {|| oSpri...
by MdaSolution
Fri Jan 22, 2010 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

You could use Windows function ClipCursor() to confine the cursor to a rectangular area on the screen: http://msdn.microsoft.com/en-us/library/ms648383(VS.85).aspx Example: http://msdn.microsoft.com/en-us/library/ms648380(VS.85).aspx look for "Confining a...
by Antonio Linares
Fri Jan 22, 2010 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236

Re: Ribbon Limit

Any Idea ?

I want the user can move a bitmap only on the child window and not move the bitmap over the ribbon or near to border of child window
by MdaSolution
Fri Jan 22, 2010 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2236
PreviousNext

Return to advanced search