Skip to search.

(*) 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

BCX · The Open Source BASIC to C Translator

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.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 33538 - 33567 of 42818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
33538 gino_mrn Offline Send Email Aug 1, 2006
3:04 pm
(but not only there!) used as "DIM PortDCB AS DBC". I don't know from where "DCB" comes. I have been looking at everywhere but have not found nothing. Please,...
33539 mikehg_67 Offline Send Email Aug 1, 2006
9:55 pm
... everywhere ... DCB is a Windows API structure. You can read about it here: MS DCB <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/devio/\...
33540 David Garner
dpgarner Offline Send Email
Aug 1, 2006
10:06 pm
, ... Device Control Buffer. It's a structure defined in the Win32 world. I'd suggest you search for some of the Win32 function calls that use the buffer. ...
33541 xgreen12000 Offline Send Email Aug 2, 2006
1:15 am
Having trouble with Combo Controls on a TAB control. The Combo's show up, but when I issue cb_add... the data does not show. The same control on a Form without...
33542 mikehg_67 Offline Send Email Aug 2, 2006
1:42 am
... Change the height of the combobox from 20 to about 80 or so. Doing this allows me to see all of the data in both. Btw, the height of a combobox is the...
33543 xgreen12000 Offline Send Email Aug 2, 2006
3:22 am
... Thanks a bunch Mike. For some reason I missed that detail. All is well now....
33544 xgreen12000 Offline Send Email Aug 2, 2006
3:26 am
Does anyone have some sample code on how to create a shortcut for an executable. I have created an application that has an installer that can be downloaded,...
33545 Kevin Diggins
mrbcx Offline Send Email
Aug 2, 2006
10:54 am
... Here are two functions from one of my projects. One returns the full path to the current user's STARTUP folder. The other creates a shell link. FUNCTION...
33546 rebpaul2000 Offline Send Email Aug 2, 2006
5:07 pm
I'm using this to parse a binary file for display in a RichEdit box: hdc = GetDC(Form1)' My attempt to repaint the window :) h = 0 i = 0 AddyInt = 000000 For i...
33547 John Jacques
johnj_01201 Offline Send Email
Aug 2, 2006
6:00 pm
Thishas NOT been tested, but if it should help improve the speed a bit. Youperforming many string concatenations, maybe someone can provide a moreefficient...
33548 rwishlaw Offline Send Email Aug 2, 2006
6:29 pm
... Try a DO EVENTS statement. Robert Wishlaw ... and...
33549 rebpaul2000 Offline Send Email Aug 2, 2006
7:06 pm
... 12k. ... the ... it ... I thought about the DO EVENTS but I don't know how to implement it in the bcx structure. Do I need to get messages and dispatch...
33550 rebpaul2000 Offline Send Email Aug 2, 2006
7:08 pm
... bit. Youperforming many string concatenations, maybe someone can provide a moreefficient method. ... justthinking that he'd be able to write a few lines to...
33551 John Jacques
johnj_01201 Offline Send Email
Aug 2, 2006
8:31 pm
Maybeyou could replace this line: SendMessage(Form1, WM_PAINT, hdc,0) ' <---Tried this to no avail With : DOEVENTS() John   -- No virus found in this incoming...
33552 xgreen12000 Offline Send Email Aug 2, 2006
9:36 pm
... Thanks for the help!...
33553 rebpaul2000 Offline Send Email Aug 3, 2006
12:00 am
... Thank you. I also cleaned it up a bit. Now it loads a 24k file within a second with very little flicker....
33554 Frank La Fontaine
f_la_f Offline Send Email
Aug 3, 2006
3:18 pm
I am unable to use MKDIR, UCASE$ and LCASE$ instructions when using Pelles, although I once could do so. For example I get the message: Missing prototype for...
33555 fat_boy_3 Offline Send Email Aug 3, 2006
4:07 pm
... Check the flags you are using when you run Pelles compiler - should be something like: pocc.exe /W0 /Ot /Gd /Go /Ze /Zx /Tx86-coff example.bas...
33556 rwishlaw Offline Send Email Aug 3, 2006
6:02 pm
... Please see http://groups.yahoo.com/group/BCX/message/33535 Robert Wishlaw...
33557 Andreas Hänsch
andreas_haensch Offline Send Email
Aug 3, 2006
8:00 pm
Hi all, in the following code DIM RAW pszText[100] AS CHAR ListView_GetItemText(ListView1,lplvcd->iSubItem,0,pszText,sizeof(pszText)) IF pszText = "" THEN ... ...
33558 mikehg_67 Offline Send Email Aug 3, 2006
9:03 pm
... ListView_GetItemText(ListView1,lplvcd->iSubItem,0,pszText,sizeof(pszText)) ... think ... Hi Andreas, It should be: IF pszText$ = "" THEN ' Always add the...
33559 Andreas Hänsch
andreas_haensch Offline Send Email
Aug 3, 2006
9:31 pm
Hi Mike, with the $ identifier it translates to if(pszText[0]==0) ' I DIMed pszText[100] { Is this really what I intended to do? Would you write it like this...
33560 mikehg_67 Offline Send Email Aug 3, 2006
10:37 pm
... This is correct. I'm thinking no operation is performed if the item is empty. So the solution would be to initialize pszText before calling. You can either...
33561 Doyle Whisenant
mechanicjenn Offline Send Email
Aug 3, 2006
11:03 pm
... Should that not be: lplvcd->iItem if you want the first column text? lplvcd->iSubItem refers to the next column,(i.e. 1) IIRC. ... -- Doyle Whisenant ...
33562 Frank La Fontaine
f_la_f Offline Send Email
Aug 4, 2006
1:44 am
Thanks for your replies, Robert and fat_boy_3. I'm on the Go now. It was lack of a -Go that stymied me. Many regards - Frank...
33563 BCX@yahoogroups.com Send Email Aug 4, 2006
2:16 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 :...
33564 "Andreas Hänsch"
andreas_haensch Offline Send Email
Aug 4, 2006
6:40 am
Hi Doyle, I have tested before with a MSGBOX and it seems to work. I am at work now but I will test your suggestion when I get home (but can also be at...
33565 gino_mrn Offline Send Email Aug 4, 2006
11:49 am
To Mike H. and David Garner I'm soory for delay in answer.. O.K. it's clear. Many Thanks again...
33566 shbuyira
shbuy_ira Offline Send Email
Aug 4, 2006
1:00 pm
Hi all Such as the following example, Visual Basic Supports 'ParamArray', Is an alternative for this in BCX? Private Sub Form_Load() H 7, 6, 7, 8...
33567 shbuyira
shbuy_ira Offline Send Email
Aug 4, 2006
2:54 pm
Hi All That is one of the my eccentric questions!, Can I Monitoring members of a type (structure) in BCX ,Without using Timer(or using code at begin/end...
Messages 33538 - 33567 of 42818   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