Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

BCX · The Open Source BASIC to C Translator

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1003
  • Category: Basic
  • Founded: Jul 9, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 36252 - 36282 of 43462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
36252 xgreen12000 Send Email Nov 2, 2007
3:14 am
I want to get system info from the registry, and it seems BCX only let's you read string and integer settings. The following sample code shows system info...
36253 Kevin Diggins
mrbcx Send Email
Nov 2, 2007
9:51 am
This is one way. SUB RegBinary below is simply a modification of the BCX Regstring runtime. You pass TWO additional BYREF parameters , a string and a DWORD If...
36254 Harvey Parisien
xgreen12000 Send Email
Nov 2, 2007
12:51 pm
Thanks Kevin. So is RegOpenKeyEx, RegQueryValueEx, and RegCloseKey actually C functions that get left alone by the bcx process in the final C code?...
36255 Kevin Diggins
mrbcx Send Email
Nov 2, 2007
6:33 pm
... They are part of the WIN32 API, most of which was written in C. If you don't have a WIN32 API help file, this will get you started: ...
36256 Harvey Parisien
xgreen12000 Send Email
Nov 3, 2007
12:36 pm
They have a broken link on that page. I found the new link... http://www.cs.virginia.edu/~lcc-win32/win32hlp.exe They added a ~ in front of the lcc... Thanks...
36257 gsac3 Send Email Nov 3, 2007
7:04 pm
What ever happened to Visual ESP? The web site seems has disapeared. Don...
36258 Kevin Diggins
mrbcx Send Email
Nov 3, 2007
11:50 pm
... Hi Don, I tried contacting Saleh a while back but received no reply. I have a complete copy of his Visual ESP setup files. He poured a lot of effort into...
36259 BCX@yahoogroups.com Send Email Nov 4, 2007
2:56 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the BCX group. File :...
36260 gsac3 Send Email Nov 4, 2007
5:21 am
Kevin: Thanks for the up-load. Don...
36261 Frank La Fontaine
f_la_f Send Email
Nov 6, 2007
12:48 pm
Anyone know a method for preventing the name/button of a running BCX program appearing in the task bar? I can avoid a name using "" in the Caption parameter...
36262 "Andreas Häns...
andreas_haensch Send Email
Nov 6, 2007
2:50 pm
Frank, the BCX_DIALOG function could be used IIRC. Andreas ... -- Psssst! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen:...
36263 Kevin Diggins
mrbcx Send Email
Nov 7, 2007
12:26 am
... Hi Frank, Include WS_EX_TOOLWINDOW in your extended window style -- example: Form1 = BCX_FORM("Woo Hoo", 0, 0, 100, 100, _ DS_MODALFRAME OR WS_POPUP OR...
36264 Frank La Fontaine
f_la_f Send Email
Nov 7, 2007
10:36 am
Thanks for that solution Kevin, I would never had stumbled on it in a thousand (maybe ten) years. And thanks Andreas for having a go. However, your hint...
36265 "Andreas Häns...
andreas_haensch Send Email
Nov 7, 2007
12:09 pm
Frank, Kevin's solution is definitly the best for you. ... Hey, you can forget this one. It is a commercial, that is coming from my mail service provider. ...
36266 valgouss Send Email Nov 8, 2007
1:08 am
May I ask the BCX gurus a very simple question? How can I use a static LIB in BCX? I have not found an example in BCX help. Please, give me the link to an...
36267 Robert Wishlaw
rwishlaw Send Email
Nov 8, 2007
3:56 am
... Hi Valeri: Use the $LIBRARY directive. $LIBRARY is in the BCX Help file listed at the beginning of the index. Robert Wishlaw...
36268 bigarellag Send Email Nov 8, 2007
10:42 am
I need to retrive data from a telnet server . Any help welcome to write such application. Thanks in Advance Gianni...
36269 Michael S. Sanders
ms79065 Send Email
Nov 8, 2007
3:43 pm
Does anyone have any ideas how I can remove the 3d frame around a button & replace it with a black rectangle? So far, the closeset I've gotten is: ...
36270 Michael S. Sanders
ms79065 Send Email
Nov 8, 2007
7:16 pm
Just thinking aloud here... After trying to set the color of a button's text & failing, I guess plain-jane, stock buttons, have no way to alter text color do...
36271 Ian Casey
ian_casey03 Send Email
Nov 8, 2007
9:49 pm
Hi Mike, see http://groups.yahoo.com/group/BCX/files/EZ_IDE-NEW/fakebuttons.zip You can use BCX_SET_LABEL_COLOR(hWnd, forecolor, backcolor) to set the text...
36272 Kevin Diggins
mrbcx Send Email
Nov 8, 2007
10:47 pm
... Nope ... they do not have a persistent DC. You need to use ownerdraw or write your own custom control....
36273 Valeri Goussev
valgouss Send Email
Nov 8, 2007
11:39 pm
Hi, Robert, Thank you for the link. It is working fine now. Usually I build static libraries directly from LCC or Pelles. I am curious whether it is possible...
36274 Robert Wishlaw
rwishlaw Send Email
Nov 9, 2007
2:30 am
... I have not tried to do this but I would guess that you would use $NOMAIN at the beginning of your code containing the functions that you would want to put...
36275 Valeri Goussev
valgouss Send Email
Nov 9, 2007
2:50 am
Thank you Robert for an advise. I'll try to follow it. I guess that all what you have proposed could be implemented in the single file, but in the worst case I...
36277 Joe
yf777a Send Email
Nov 9, 2007
4:45 pm
I have a bmpFlipcontrol, really a button made from modifying a "picture button" control. It is pure C, though. I use the $ccode directive. I recently added...
36278 Michael S. Sanders
ms79065 Send Email
Nov 10, 2007
1:19 am
... Howdy Ian. Now that's nifty. ... Same here... Thanks for the help, (& ideas!), slowly getting back up to snuff. -- Later on, Mike...
36279 Michael S. Sanders
ms79065 Send Email
Nov 10, 2007
1:23 am
... I see now, yes sir you're sure correct. I've managed a nice solution: - bitblit buttons onto form - if PtInRect(&MyButton[x],pt) = 1 Then... Thanks for the...
36280 Michael S. Sanders
ms79065 Send Email
Nov 10, 2007
1:37 am
Thanks for your offer Joe, I appreciate it =) Here's a screenshot of the application now: http://img.photobucket.com/albums/v634/glyphs/app.jpg - I paint a...
36281 Kevin Diggins
mrbcx Send Email
Nov 10, 2007
2:37 am
... Hi Mike, I've never been happy with any of my attempts at a simple, reliable KEYBOARD handler for any of my GUI-based calculators, like what you've got...
36282 Michael S. Sanders
ms79065 Send Email
Nov 10, 2007
3:20 am
... Howdy Kevin, In fact, dealing with that issue even now, here's where I'm at, (still more to do), I know this wont make much sense out of context, but...
Messages 36252 - 36282 of 43462   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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