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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 10567 - 10597 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10567
Hello, I have uploaded the MDI.zip in file section. A small GDI leak solved in ClientColor proc. Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Oct 2, 2006
5:26 am
10568
Hello, Is it possible to add support for avi resource like this: ANIMATION AVI "c:\hot\myavi.avi" RCDATA is not compatible with sysanimate32 class Pierrot :)...
MANY PIERRE
pierrotstudio
Offline Send Email
Oct 3, 2006
11:23 am
10569
... Yes, in a new version upgrade soon (4.8n), you can write: $resource myavi as "c:\hot\myavi.avi" where the ".avi" extension will invoke use of the RT_AVI ...
doctor electron
globalservices1
Offline Send Email
Oct 3, 2006
1:44 pm
10570
How do I need to use hbOBJ inside a Method? For now I use "BYREF(hbOBJ + 4)" - as example - which works for user defined properties. But how to access...
efgee2003
Offline Send Email
Oct 4, 2006
1:37 am
10571
Oct 3 Dow Jones Industrial Average and HotBasic 4.8n reach new all-time highs! $RESOURCE type "AVI" for .avi files now supported. STRING/MEMORY/LIST .Clear...
doctor electron
globalservices1
Offline Send Email
Oct 4, 2006
2:34 am
10572
... You are right that hbObj (it's a case-sensitive HB variable) is a pointer that is always set on entry to a Custom Object procedure. And you can use...
doctor electron
globalservices1
Offline Send Email
Oct 4, 2006
3:05 am
10573
Works great. Thanks efgee P.S. Sorry, but I'm little bit short of time (later more...)...
efgee2003
Offline Send Email
Oct 4, 2006
5:23 am
10574
Hello Jim, I have tested avi resource and work fine ;) usage possible: $DEFINE ACM_OPEN 1124 $DEFINE ACM_PLAY 1125 $DEFINE ACM_STOP 1126 ...
MANY PIERRE
pierrotstudio
Offline Send Email
Oct 4, 2006
6:11 am
10575
... Greetings, Pierrot (the "Hercule Pierrot" of Windows coding!). Thanks for the confirmation; and your code snippet is a "cut-and-save" for all to see how to...
doctor electron
globalservices1
Offline Send Email
Oct 4, 2006
12:03 pm
10576
... The above covers access to the extended object for code within the Custom Object SUB/FUNCTION procedure. I might add that the suffix "Ex" is used...
doctor electron
globalservices1
Offline Send Email
Oct 4, 2006
5:41 pm
10577
Now I'm stuck here: SUB MEMORYEXCompress defstr CompressDestination = STRING$(byref(hbHnd + 8) + 4, _ chr$(0)) 'make dest buffer BYREF(hbObj) =...
efgee2003
Offline Send Email
Oct 4, 2006
6:14 pm
10578
Thank you for this additional information. It surely will come handy. Maybe it should be added to the docs. Best Regards efgee...
efgee2003
Offline Send Email
Oct 4, 2006
6:23 pm
10579
... Impressive! You are so far into the stratosphere of abstraction -- we can hardly see earth. This code looks OK; and it may be ... Your procedure assumes,...
doctor electron
globalservices1
Offline Send Email
Oct 4, 2006
7:47 pm
10580
I've done it that way now and it works: SUB MEMORYEXCompress defstr TempCompressedData = STRING$(byref(hbHnd + 8) + 4, chr$(0)) 'make dest buffer BYREF(hbObj)...
efgee2003
Offline Send Email
Oct 4, 2006
8:56 pm
10581
... Not yet; but often, these are MS Windows structures that pertain to the native object, sometimes with additional bytes to support extra features "bundled"...
doctor electron
globalservices1
Offline Send Email
Oct 5, 2006
12:59 am
10582
... Wonderful -- I mean, there is so much that could go wrong; or better, so much you have to have right ... and you do! ... Bravo! I thought about the .Clear...
doctor electron
globalservices1
Offline Send Email
Oct 5, 2006
12:59 am
10583
Jim, this is the code I have so far. Now we can use Crypt/Pack functions as needed. But there are several issues; 1.) It's not possible to clear f before...
efgee2003
Offline Send Email
Oct 5, 2006
4:55 pm
10584
... efgee, I think the strange behavior you observe probably reflects the fact that you may well have corrupted a HB stream object. The above statement, in...
doctor electron
globalservices1
Offline Send Email
Oct 5, 2006
11:24 pm
10585
... Decompressing doesn't work, because the mem size doesn't increase (I suppose). ... So how can I change the buffer size if not with .Length? I need to...
efgee2003
Offline Send Email
Oct 5, 2006
11:50 pm
10586
... This should be verified; print the .ram after the call to bufinit. It should be greater than the value you asked for with bufinit. ... The question of...
doctor electron
globalservices1
Offline Send Email
Oct 6, 2006
12:24 am
10587
... Oops, you need this, too! So write funccall bufinit, hbHnd, BYREF(hbObj + 4) 'now buffer is big enough and .length = 0 'Therefore, we must set the .length...
doctor electron
globalservices1
Offline Send Email
Oct 6, 2006
12:32 am
10588
... Ram size is 19 bytes bigger than tmp-mem size. Have to look further what's happening. ... Sorry, maybe I missed some information, have to reread it. Thanks...
efgee2003
Offline Send Email
Oct 6, 2006
12:36 am
10589
... Works now as expected. Thank you very much, now I have to digest all the information you provided. Best Regards efgee...
efgee2003
Offline Send Email
Oct 6, 2006
12:37 am
10591
... Correction: 9/23/06 post. Cheers, Jim...
doctor electron
globalservices1
Offline Send Email
Oct 6, 2006
2:30 pm
10592
Hi, all! Progress report: I now have the THIS keyword working for main program code. Best way to explain it is the following code that compiles and runs! ...
doctor electron
globalservices1
Offline Send Email
Oct 8, 2006
2:51 am
10593
... Cool! ... Even cooler! ... Does .Initialize resemble sizing ram for further use? Thanks for the progress report. efgee...
efgee2003
Offline Send Email
Oct 9, 2006
1:58 am
10594
... Yes, and it's primary use would be to prepare a buffer to supply to a procedure (an API, or your JCALG1 stuff). With defstr MyBuffer in place of MyBuffer...
doctor electron
globalservices1
Offline Send Email
Oct 9, 2006
4:02 am
10595
... Hi, Jim. Is "this" just a $define/$undef , or is it actually a pointer to the dimensioned object? Instead of having to do "this = Box", would it be...
airrsongs
Offline Send Email
Oct 9, 2006
4:39 am
10596
I don't really understand THIS, in all basic languages that I've developed in THIS only works within a class. How do we get THIS to work within a Sub/Function...
fredriknorling2003
fredriknorli...
Offline Send Email
Oct 9, 2006
5:15 am
10597
... Thanks, Air, for these inputs. First of all, readers here should not assume that I know all the answers in this topic area; and thus, sharing of info and...
doctor electron
globalservices1
Offline Send Email
Oct 9, 2006
12:42 pm
Messages 10567 - 10597 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