2008-10-25 19:10 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])
* harbour/contrib/hbdbgfx/dbgfx.c
+ HB_FUNC( HB_OUTDEBUG ).
May be I am missing something. Please correct.
Regards
Pritpal Bedi
--
View this message in context:
http://www.nabble.com/2008-10-25-19%3A10-UTC-0800-Pritpal-Bedi
Hello Przemek
How this error can be generated:
Open any TBrowse. I did with tests/wvtext.prg .
Scroll down with down-arrow past last line by two records.
Scroll up with up-arrow past first record.
Scroll down with down-arrow and at stay at last row for a moment - just to
be sure.
Scroll down -
2008-10-25 17:55 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])
* harbour/include/hbgtinfo.ch
+ Added HB_GTI_SETPOS_XY
+ Added HB_GTI_SETPOS_ROWCOL
* harbour/rtl/gtwvt/gtwvt.c
! Updated to honor HB_GTI_SETPOS_XY | HB_GTI_SETPOS_ROWCOL commands.
* harbour/tests/wvtext.prg
! Upd
Sorry, forgot the previous message as was a HwGUI problem.
I gone confused because the stable version don't signal this waste of memory
(but still exists also in stable...).
Thanks anyway.
Maurizio
-Messaggio originale-
Da: Maurizio la Cecilia [mailto:[EMAIL PROTECTED]
Inviato: sabato 2
2008-10-25 14:49 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])
* harbour/rtl/gtwvt/gtwvt.h
+ Added member to HB_GTWVT
* harbour/include/hbgtinfo.ch
+ Added HB_GTI_RESIZEMODE
+ Added HB_GTI_RESIZEMODE_FONT
+ Added HB_GTI_RESIZEMODE_ROWS
* harbour/include/inkey.ch
+ Added K
Viktor
Szakáts Viktor wrote:
>
> After giving some thoughts on this, maybe the best
> would be to simply remove the notifier block feature
> (I don't think it'd be used by too many, it's pretty
> fresh and pretty rough), and replace it with K_HB_*
> Inkey() codes, which would be masked out by d
Hello Ciro,
Saturday, October 25, 2008, 5:51:43 PM, you wrote:
CVC> Hi all:
CVC> I didn't build rddleto from current cvs.
CVC> MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
CVC> C:\c2w\BCC55\BIN\BCC32.EXE -c -O2 -tW -M
CVC>
-IC:\c2w\BCC55\INCLUDE;C:\c2w\harbour\INCLUDE;C:\minioop\
After giving some thoughts on this, maybe the best
would be to simply remove the notifier block feature
(I don't think it'd be used by too many, it's pretty
fresh and pretty rough), and replace it with K_HB_*
Inkey() codes, which would be masked out by default
(just like mouse events), and when en
Hi Pritpal,
I disagree with K_HB_* or HB_K_* namespace. Why we want users to
remember one more way of using Clipper syntax. We simply document
the K_* constants. When I introduced K_MBUTTONDOWN ~ K_NCMOUSEMOVE
No one has to remember anything, since this
will be a brand new feature to learn.
Hello Przemek, Viktor, Massimo
>hb_gtInfo( HB_GTI_SETPOS, { nMode, nX|nRows, nY|nCols } )
>> hb_gtInfo( HB_GTI_SETPOS, nMode, nX|nRows, nY|nCols )
without array? In the original version I created long ago
HB_GT_INFO structure looks:
typedef struct
{
int iParams;
i
Sorry for the msg sent befor the completion
This was the end of text:
Note: to reproduce the error it's sufficient to build the
\hwgui\samples\all\a.prg (with command: "bld a" executed form same folder of
prg), but before is needed to add the line:
SET( _SET_HBOUTLOG, somefilename, .t. )
at
I'm investigating about a problem of Harbour CVS not releasing memory of
unused modules.
This happens constantly when a program linked with HwGUI opens and closes a
dialog window (main windows not are affected).
Same program compiled with last stable Harbour version releases correctly
the memory.
M
2008-10-25 09:35 UTC-0800 Pritpal Bedi ([EMAIL PROTECTED])
* harbour/contrib/gtwvg/gtwvg.c
* harbour/contrib/gtwvg/gtwvg.h
! Updated to honor latest changes in GTWVT.
Regards
Pritpal Bedi
--
View this message in context:
http://www.nabble.com/2008-10-25-09%3A35-UTC-0800-Pritpal-Bedi-%28
Hi all:
I didn't build rddleto from current cvs.
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
C:\c2w\BCC55\BIN\BCC32.EXE -c -O2 -tW -M
-IC:\c2w\BCC55\INCLUDE;C:\c2w\harbour\INCLUDE;C:\minioop\INCLUDE;C:\letodb\source\client;C:\letodb\source\client;C:\letodb\source\common;C:\letodb\inc
Hi folks,
I've noticed very bad screen refresh problems with
DEMOWVG when moving one window with another one in
the background. Also, with GTWVT there might still
be situations when screen gets "locked" while longer
programming tasks are running (especially with -gc3
I guess).
I'm not sure if th
Hi,
IMO this method is better, because the C object will
be automatically destroyed when the var goes out of
scope. Basically there is no need to manually destroy
the object so there is also no possibility to forget
it by mistake and cause resource/memory leakage.
This is a very nice feature of
Hi Przemek,
typedef struct
{
int iParams;
int iReserved;
PHB_ITEM pResult;
PHB_ITEM pNewVal[ HB_MAX_GTINFO_PARAMS ];
} HB_GT_INFO, * PHB_GT_INFO;
I later dropped it but I can still reactivate this code.
This would be a nice addition IMO.
if( iKey == K
Hi budyanto
Hbcreate Return a reference to a object something like will happen in
CreateObject(
Also in visial foxpro can used object for form/windows
loForm = CREATEOBJECT("HiForm")
loForm.Show(1)
DEFINE CLASS HiForm AS Form
AutoCenter = .T.
Caption = "Hello, World"
ADD OBJECT lblHi as
>OK though maybe it will be better to implement sth like LOCKAREA
>to block console output in specified region.
>BTW GTWVT redraw screen using data from base character screen buffer.
>GTWVG creates intermediate image so data from screen buffer is written
>to this image and to the window. On refresh
Hi Przemek,
Thanks for these GREAT innovations of yours. I am now having a big hope into
the future :-)
After learning some of your test programs, I have some notes though.
In your tests/gtwin.prg I learn this:
pGT1 := hb_gtCreate( THREAD_GT )
which opens a new GT/window.
And then later:
pGT
SQL SELECT is one of the most versatile command available to Visual FoxPro
programmer
SELECT [ALL | DISTINCT] [TOP nExpr [PERCENT]] Select_List_Item [, ...]
FROM [FORCE] Table_List_Item [, ...]
[[JoinType] JOIN DatabaseName!]Table [[AS] Local_Alias]
[ON JoinCondition [AND | OR [Joi
Sorry How can i activate?
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw
Czerpak
Sent: Saturday, October 25, 2008 12:48 PM
To: Harbour Project Main Developer List.
Subject: Re: RE: [Harbour] Proposed Feature Set for Multi-Window GTs
On Sat, 2
-Messaggio Originale-
Da: "Phil Barnett" <[EMAIL PROTECTED]>
A: ; <[EMAIL PROTECTED]>
Data invio: sabato 25 ottobre 2008 1.55
Oggetto: [Harbour] A friendly reminder
Microsoft announced that they found and patched a VERY nasty rpc bug which
allows attackers full control. If you have n
2008-10-25 12:58 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/gtwvt/gtwvt.h
* harbour/source/rtl/gtwvt/gtwvt.c
* eliminated few static variables
! fixed possible race condition when new window is created by adding
mutex protection
best regards
Przemek
On Sat, 25 Oct 2008, Massimo Belgrano wrote:
Hi Massimo,
> What do you think having a scrollable area in GT?
GTWIN already has such functionality in W2K, XP and later Windows
versions.
> Mobile device and tomorrow internet will require this capability
> Physical area is more small that logical
On Sat, 25 Oct 2008, Maurilio Longo wrote:
Hi,
> enable a full trace doc\tracing.txt, so you'll see more or less which
> operation locks up (I'd say locking of records is the first candidate).
I also think that file locking is 1-st candidate.
Try to isolate the problem with small example which
c
What do you think having a scrollable area in GT?
Mobile device and tomorrow internet will require this capability
Physical area is more small that logical
Gt window will USE horizontal and vertical scroll bar
As Physical SET BY HB_GTI_SETPOS (Have 10 row ,40 column)
As logical SET BY HB_GTI_LAREA
Lorenzo,
enable a full trace doc\tracing.txt, so you'll see more or less which
operation locks up (I'd say locking of records is the first candidate).
Best regards.
Maurilio.
Lorenzo Fiorini wrote:
> I'm using Sun's VBox 2.0.4 under Ubuntu 8.04 with a Win2000Sp4 VM.
> I use it to maintain C53b/
On Fri, 24 Oct 2008, Pritpal Bedi wrote:
Hi Pritpal,
> I propose following for consoles created with hb_gtReload( 'WVG|WVT' ).
> /* Positions window at top-left position at nX,nY coordinates.
> ROWS/COLS be converted to pixels */
> hb_gtInfo( HB_GTI_SETPOS, { nMode, nX|nRows, nY|nCols } )
>
I'm using Sun's VBox 2.0.4 under Ubuntu 8.04 with a Win2000Sp4 VM.
I use it to maintain C53b/FW16 apps and to build Harbour using
msys/mingw and I access datas that are in the host ( Ubuntu ) using
VBox's shared folders.
Now if I build the apps using C53b/Fw16 they work ( slowly ) while the
same ap
Pbmake
PBMake is a make engine, work also for Clipper, Xbase++, C and ASM
Run PBMAKE one time to create MAKE.BAT, and then...
Make [/ALL] [/D...][/D...][/D...][up to 7]
where is the name of the MAKE script
where [/ALL] will cause all modules to rebuild
have Support c
On 24 Oct 2008 at 22:40, Pritpal Bedi wrote:
>
> SVN update
> https://harbour-project.svn.sourceforge.net/svnroot/harbour-project/trunk/harbour
Thanks Pritpal. That doesn't work either, but it causes me to read the doc more
carefully :-).
It turns out that the "update" command should not be foll
Hi Pritpal,
- Original Message -
From: "Pritpal Bedi"
To:
Sent: Friday, October 24, 2008 9:03 PM
Subject: Re: [Harbour] May be it is useful for you
WVG or WVT both gives power to render console outpur commands
to a TRUE Windows' window.
Do you happen to know whether this also work
Hi Pritpal,
Could it be /u you're looking for? Else, but i'm not sure whether
this is operational in Harbour, there has been mention of /u+ (or
was it in xHarbour; can't look it up right now) - without it you might need
to manually #include "std.ch" from your custom file
kindly,
frank
--
34 matches
Mail list logo