Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16178 - 16207 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16178
Is this needed: hDC=form.BeginPaint form.EndPaint grCor $APPTYPE GUI: $TYPECHECK ON DEFINT hDC DIM mybmp As BITMAP mybmp.FillCircle 32,32,31,&HFFFFFF DIM form...
chordnl
Offline Send Email
Dec 2, 2008
7:48 pm
16179
... Not in an .OnPaint routine, because HB manages getting the proper hDC (internal variable hbDC)! Outside, yes, it's needed. ... The bmp_draw.bas demo in...
doctor electron
globalservices1
Offline Send Email
Dec 2, 2008
8:14 pm
16180
Hello all, I have written a include file I use for parsing text. I also have a small program showing how to use it. I have posted both programs below. The...
tcslonaker
Offline Send Email
Dec 3, 2008
4:17 pm
16181
... below. ... Hello, Maybe the line: sR = ExtractNextString(i2_ExtractString, sData,_ "<file>","</file>") should be: sR = ExtractNextString(1, sData,_ ...
MANY PIERRE
pierrotstudio
Offline Send Email
Dec 3, 2008
4:39 pm
16182
... i2_ExtractString is defined as DWORD right after the function definitions in the include file. I just discovered that changing it from dword to long gives...
tcslonaker
Offline Send Email
Dec 3, 2008
5:26 pm
16183
... By non-defined I meant what is the value of i2_ExtractString? Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Dec 3, 2008
8:31 pm
16184
I have 2 panels which are overlapping, 1 partly on top of other panel The one that is on top of the other I cannot detect the onclick event Is there a way to...
chordnl
Offline Send Email
Dec 4, 2008
7:28 am
16185
such as making 1 panel on top of the other settoforeground, settobackground cor...
chordnl
Offline Send Email
Dec 4, 2008
9:12 am
16186
How to detect when clicking on the black key panel( butBlack) grCor '================================= $apptype gui $typecheck on $xpstyle defint...
chordnl
Offline Send Email
Dec 4, 2008
9:42 am
16187
... Hello Cor, It seems to me that you should use buttons with WS_CLIPSIBLINGS style on the place of panels... Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Dec 5, 2008
5:51 am
16188
button is also not working, but then i cannot use colors grCor ... other ... onclick ... style...
chordnl
Offline Send Email
Dec 5, 2008
6:47 am
16189
When tried same with delphi then it is ok, grCor...
chordnl
Offline Send Email
Dec 5, 2008
7:03 am
16190
with delphi default styles CONTROL ADD LABEL, hDlg, %IDC_LABEL656416, "Panel1", 128, 113, 33, 109, _ %WS_CHILD OR %WS_VISIBLE OR %WS_CLIPSIBLINGS OR % ...
chordnl
Offline Send Email
Dec 5, 2008
7:23 am
16191
Is it possible to repaint a certain part x,x1,y,y1 of a form? grCor...
chordnl
Offline Send Email
Dec 5, 2008
9:55 am
16192
when doing a repaint of an object the object is automatically going to the foreground could this be changed? so that is it staying at the same position grCor...
chordnl
Offline Send Email
Dec 5, 2008
10:28 am
16193
... 'with buttons 'you can use a bitmap for colors with 'the .bmp property ... or ownerdraw buttons 'the WS_CLIPSIBLINGS style clips all other overlapping...
MANY PIERRE
pierrotstudio
Offline Send Email
Dec 5, 2008
12:30 pm
16194
Thanks, it works ok with panel too and now i can change colors ;-) grCor...
chordnl
Offline Send Email
Dec 5, 2008
1:49 pm
16195
add a .noduplicate so if an item already exists then do not add it grCor...
chordnl
Offline Send Email
Dec 5, 2008
7:53 pm
16196
Unsure if this is more of point of reference than anything else. I couldn't figure out why I was getting this error message. HotBasic.lib(hPROC.obj) : error...
enpsuedo
Offline Send Email
Dec 6, 2008
5:56 am
16197
... Try using InvalidateRect E....
emmazle
Offline Send Email
Dec 6, 2008
9:38 am
16198
... would ... Hello enpsuedo, Your app use gui object ? If yes, you have to use $APPTYPE gui with showconsole Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Dec 6, 2008
9:52 am
16199
... winaddr is a reserved symbol for internal data in app types that use GUI FORM objects. ... Seems the solution would be to remove $APPTYPE CONSOLE. That ...
doctor electron
globalservices1
Offline Send Email
Dec 6, 2008
12:06 pm
16200
... if A.indexof(x$)<zero then A.additems x$ ;) j...
doctor electron
globalservices1
Offline Send Email
Dec 6, 2008
12:15 pm
16201
Yes, I know this but better would be .dupignore just like in Delphi grCor...
chordnl
Offline Send Email
Dec 6, 2008
1:17 pm
16202
... OK, I'll look into making that a property of LIST. ;) j...
doctor electron
globalservices1
Offline Send Email
Dec 6, 2008
1:42 pm
16203
... Guess that's how Delphi degrades performance. It would mean that an extra step (checking .duplicates true or false) would be added to all LIST .AddItems...
doctor electron
globalservices1
Offline Send Email
Dec 6, 2008
2:09 pm
16204
Jim, you are right as always thanks for showing nodups.inc solution grCor...
chordnl
Offline Send Email
Dec 6, 2008
4:17 pm
16205
Usually comboboxes enable input and you have to set dropdownlist style to disable it. In Hotbasic input is apparently disabled in comboboxes. How can I enable...
giorgiobertazzo
Offline Send Email
Dec 7, 2008
11:15 pm
16206
... =====cboxedit.bas create f As FORM create cb as combobox style=self.style xor one recreate width=100 additems "aaa","bbb","ccc" itemindex=zero end create ...
doctor electron
globalservices1
Offline Send Email
Dec 7, 2008
11:36 pm
16207
... I missed the Recreate, first experiments with GUI......
giorgiobertazzo
Offline Send Email
Dec 7, 2008
11:53 pm
Messages 16178 - 16207 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help