Scheduled Maintenance:
We are undertaking some essential, but extensive maintenance to improve Yahoo!
Calendar. Your Group Calendar is being migrated to a much improved version of
Yahoo! Calendar. During the maintenance period, you may not have access to your
Groups Calendar.
We sincerely apologize for this inconvenience. Your Groups Calendar is in great
shape and we are working to have it available again as quickly as possible
- Yahoo! Groups & Yahoo! Calendar Team
First of all, I am new to this group and would like to say hi to all. Kevin knows me as I have corresponded with him before. I wrote the "BCXEditor" example in...
25
Kye
sky1@...
Aug 8, 2000 3:41 pm
There is a problem while line inputting a file into a variable where it will truncate the last character of the last line. I've always just added an extra...
26
kdiggins@...
Aug 8, 2000 10:17 pm
Ahoy Doyle! This statement in BCX ... Function WinMain (hInst as HWND,hPrev as HWND,CmdParam$,CmdShow) ...produces this working statement in LCC-Win32 extern...
27
Doyle Whisenant
mechanic@...
Aug 8, 2000 10:26 pm
... Actually I finally figured this out! Sorry I didn't get back with an update. I am using: Function WinMain (hInst as HWND,hPrev as HWND,CmdParam as...
28
kdiggins@...
Aug 8, 2000 10:28 pm
This code works ( correctly ) and predictably ... dim a$ open "z.txt" for input as fp1 while not eof(fp1) line input fp1, a$ print a$ wend close fp1 Am I...
29
Kye
sky1@...
Aug 9, 2000 7:58 am
Yeah, sorry. It does work fine. The files that I where using to test with where created by hand and the last line of the file was'nt proceeded with a CrLf...
30
Doyle Whisenant
mechanic@...
Aug 10, 2000 10:44 pm
Does BCX handle callback code? I am using the following code: Function HelloWndProc(hwnd AS HWND,Msg AS UINT,wParam AS UINT,lParam AS UINT) AS long and I want...
32
Kevin Diggins
kdiggins@...
Aug 12, 2000 8:53 pm
... Here's one approach ( Requires BCX Version 1.72 ) ... CONST LC = LRESULT CALLBACK Function HelloWndProc ( _ HWND hwnd, _ UINT message, _ WPARAM...
33
Kevin Diggins
kdiggins@...
Aug 12, 2000 9:04 pm
BCX Version 1.72 is available for download. http://www.users.uswest.net/~sdiggins/setup.exe Version 1.72 Highlights ... * Added ELSEIF keyword * Use "C"...
34
Doyle Whisenant
mechanic@...
Aug 12, 2000 11:18 pm
... Thanks Kevin, just got the new version and I'll give this a try! -- Doyle Whisenant mechanic@... http://mechanic.webjump.com...
35
pol
td.pol@...
Aug 22, 2000 8:27 am
Hello! I'm trying to write a loader for RapidQ pcode files: these are appended to the loader (copy /b stub.exe + pcode.bc prog.exe), loaded in a buffer which...
36
Kropf, Gerhard
Gerhard.Kropf@...
Aug 22, 2000 8:49 am
Hello from Germany, I also use PowerBasic Consols Compiler. To hide the Console Windows I use the little tool, included. It will modify a Console-EXE in the...
37
pol
td.pol@...
Aug 22, 2000 11:19 am
Original message from: "Kropf, Gerhard" ... little tool, included. It will modify a Console-EXE in the way, the Console-Window won´t appear. ... really nice! ...
38
Kropf, Gerhard
Gerhard.Kropf@...
Aug 22, 2000 11:27 am
8-)...
39
Kevin Diggins
kdiggins@...
Aug 24, 2000 10:59 pm
I've rebuilt version 1.72 and it's now available for download from my website. This download adds some missing GUI examples that I thought I included 2 weeks...
40
Kevin Wilson
kevinwilson1997@...
Aug 28, 2000 6:45 pm
I was checking out BCX. Looks like a neat little utility. One that could be INVALUABLE to me if it did the following things: 1) Convert not just BASIC, but...
41
Kevin Wilson
kevinwilson1997@...
Aug 28, 2000 6:49 pm
I found another really good link on C calling conventions as related to my last Email: ...
42
Kevin Diggins
kdiggins@...
Aug 28, 2000 10:19 pm
I'm a little confused by some of your statements. Practically the entire Win32 API is written in C. How is it that VB programmers are able to call API...
43
Kye
sky1@...
Aug 29, 2000 12:53 pm
Most of the winapi dll functions/procedures use stdcall, that is, params for the proc are pushed onto the stack from right to left and the caller will do the...
44
Kye
sky1@...
Aug 29, 2000 1:33 pm
... This is incorrect.. both _cdecl and _stdcall push params from right to left. The only difference is the stack maintenance....
45
Kevin Diggins
kdiggins@...
Aug 29, 2000 10:28 pm
Thanks for the very understandable example Kye. Very informative! ... section. ... "_SQUARED@4" (ByVal ... correct ... this out ... figure ... pre-defined ...
46
dunric@...
Sep 5, 2000 3:18 am
Hello, In versions of BASIC such as QBasic, PowerBasic and others, the command: INPUT a$ grabs the entire line of entered text Example: typing "Hello world!"...
47
Kevin Diggins
kdiggins@...
Sep 5, 2000 7:49 am
Here is one way. dim a$ Print "Enter a line of text" : gets ( a$ ) Print a$ It uses the "C" keyword "gets", short for get string. Remember to keep your...
48
Kye
sky1@...
Sep 9, 2000 12:15 am
I received an email regarding passing a byte array from a BCX dll to VB .. I thought I might post it on the BCX egroup incase anyone else wanted to know. There...
49
Kevin Diggins
kdiggins@...
Sep 9, 2000 7:18 pm
I could easily modify BCX to specify __stdcall as an option Here are a few idea's to communicate this to BCX (Option 1) $DLL STDCALL (Option 2) $VBDLL (Option...
50
Doyle Whisenant
mechanic@...
Sep 9, 2000 7:56 pm
... I like this one! -- Doyle Whisenant mechanic@... http://mechanic.webjump.com...
51
Kye
sky1@...
Sep 9, 2000 10:05 pm
I also like the translator directive. $DLL STDCALL Kye. ... From: "Kevin Diggins" To: <kdiggins@egroups.com> Subject: [BCX BASIC TRANSLATOR] Re: BCX based dll...
52
Kevin Diggins
kdiggins@...
Sep 10, 2000 12:42 am
$DLL STDCALL was implemented today. It will be part of the next distribution ( version 1.80 ) which I hope will be uploaded to my site this weekend. I still ...
53
Kevin Diggins
kdiggins@...
Sep 10, 2000 10:29 pm
BCX version 1.8 is available for download. Highlights More GUI and Console mode samples Added $DLL STDCALL Added GOSUB/RETURN Updated Windows Help file Enjoy!...
54
gdumer@...
Sep 13, 2000 1:50 pm
Hi Kevin, Nice work! I have a few observations/suggestions I'd like to make. I'm using BCX v1.80. First... It would be helpful if you modified LCCEXE.BAT to...