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: 1012
  • 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 43412 - 43441 of 43441   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
43412 "Andreas Hän...
andreas_haensch Send Email
Mar 26, 2013
8:25 pm
Hi Jeff, I just thought myself that I have to test subclassing the listview. But you beat me. Thank you! I will study your example. Now I know what to do. ...
43413 "Andreas Hän...
andreas_haensch Send Email
Mar 26, 2013
8:48 pm
Ah, I answered too soon, Jeff. I just realized that you hacked the notify handling to get the desired behaviour. Strange... Have you also compiled and linked...
43414 reachjeffs Send Email Apr 1, 2013
10:21 pm
Yes, definitely a hack. As usual, my code isn't pretty, but it does what I want. :) This actually was compiled and linked with both Pelles and LCC. I also...
43415 reachjeffs Send Email Apr 5, 2013
1:22 am
I took some time to figure this out...and then I noticed the link in your original post to the PB code. :) Anyway, this works without any hacks. The key is...
43416 John Spikowski
johnspikowski Send Email
Apr 5, 2013
4:02 am
... This is a bit confusing to me. Wouldn't CallWindowProc() be the FUNCTION return no mater what? Shouldn't there be an EXIT FUNCTION before leaving the CASE...
43417 mrbcx Send Email Apr 5, 2013
2:42 pm
IF Locked THEN FUNCTION = TRUE does not need an "EXIT FUNCTION" statement...
43418 John Spikowski
johnspikowski Send Email
Apr 5, 2013
3:17 pm
... So in BCX once you assign the function return value all other attempts to assign it again before leaving the function are ignored?...
43419 "Andreas Hän...
andreas_haensch Send Email
Apr 5, 2013
10:15 pm
Great, and thank you for good example. I have had no time this week. :-( Now I have hacked your code to see if it is possible to detect a single column. I...
43420 mrbcx Send Email Apr 6, 2013
1:25 am
... Right ... which is the way C works. I've always thought PB's implementation was odd + confusing....
43421 John Spikowski
johnspikowski Send Email
Apr 6, 2013
1:43 am
In C, anything after a 'return&#39; is dead code. In ScriptBasic and every other Basic I've used, RETURN follows structure. FUNCTION Test(arg) IF arg = 1 THEN Test...
43422 John Spikowski
johnspikowski Send Email
Apr 6, 2013
2:23 am
I thought I would try the same test with BaCon. FUNCTION Test$(NUMBER arg) IF arg = 1 THEN RETURN "One" END IF RETURN "Default" END FUNCTION PRINT Test$(1) ...
43423 Ian Casey
ian_casey03 Send Email
Apr 6, 2013
10:39 pm
Hi All, over the last month I finalized DevSuitePro v 1.47. and gave it a new home. http://bcxolr.99k.org/DevSuitePro/BCX DevSuitePro.html ...
43424 "Andreas Hän...
andreas_haensch Send Email
May 1, 2013
9:17 pm
Some days ago Jeff provided an example how we can prevent in a listview control the changing of the column width by dragging the header dividers. Thanks Jeff! ...
43425 Ian Casey
ian_casey03 Send Email
May 3, 2013
4:19 pm
Andreas, Your original code didn't crash here, but I moved the If Locked inside the test for iItem =1 test and it works as expected. Ian CALLBACK FUNCTION...
43426 "Andreas Hän...
andreas_haensch Send Email
May 3, 2013
4:33 pm
Ian, thank you for testing. I wanted to know , rather, how the function CALLBACK FUNCTION LV1HDR_Proc() needs to be changed. In this function I would like to...
43427 "Andreas Hän...
andreas_haensch Send Email
May 3, 2013
8:28 pm
Hi all, today I have successfully build an example of how to lock only a single listview column. Hurray! As I said I modified Jeff's example (for locking the...
43428 reachjeffs Send Email May 3, 2013
10:34 pm
Looks good! I suggest a few changes to simplify the code, but they are just suggestions. :) The callback function already has the handle to the header control...
43429 James Fuller
james_c_fuller Send Email
May 4, 2013
11:10 am
Thanks for the HHT_ONDIVIDER code. It allowed me to finish up a couple of dangling loose ends. James...
43430 "Andreas Hän...
andreas_haensch Send Email
May 4, 2013
12:30 pm
Jeff, thank you again. :-) It makes all sense and it works here perfectly now. Gesendet: Samstag, 04. Mai 2013 um 00:34 Uhr Von: reachjeffs...
43431 "Andreas Hän...
andreas_haensch Send Email
May 4, 2013
12:59 pm
That sounds very interesting. I am looking forward for your next news. :-) Gesendet: Samstag, 04. Mai 2013 um 13:10 Uhr Von: "James Fuller"...
43432 James Fuller
james_c_fuller Send Email
May 11, 2013
6:10 pm
FYI the Help File Select Case example 2 translation is incorrect. James '------------------------------------------------------------------------------ Bcx...
43433 Robert
rwishlaw Send Email
May 12, 2013
3:10 am
BCX Help Version 6.9.9, May 11 2013 is available as BCXHelp.chm in the directory http://tech.groups.yahoo.com/group/BCX/files/BCX_Help_Files/ Changes include ...
43434 Robert
rwishlaw Send Email
May 12, 2013
3:12 am
Hi James: Thank you for the info. I have removed the C translation for SELECT CASE example 2. Robert Wishlaw...
43435 James Fuller
james_c_fuller Send Email
May 12, 2013
1:11 pm
Robert, It is probably not worth the effort but none of the MSG_HANDLER code works after 6.22 due to the change in Select Case. Also In the BEGIN EVENTS END...
43436 James Fuller
james_c_fuller Send Email
May 12, 2013
2:03 pm
Robert, If you remove the Select Case in the BEGIN EVENTS form1Proc all seems to be well. Well not quite for me as I changed LOCAL so LOCAL needs to be changed...
43437 James Fuller
james_c_fuller Send Email
May 12, 2013
2:20 pm
Another follow up. It compiles fine with 6.22 and 6.99 but is it working correctly? The two Form selection buttons just produce a rectangle in the bottom...
43438 James Fuller
james_c_fuller Send Email
May 13, 2013
2:01 pm
Ok. I think I finally have this figured out :) The help file code uses a redundant line that I took literally when testing with bc9. bc9 treats all LOCAL and...
43439 James Fuller
james_c_fuller Send Email
May 17, 2013
2:52 pm
With the anticipation of further c++ study I updated the bc9 help file c++ section and posted a preliminary version in my bcx yahoo group folder. ...
43440 James Fuller
james_c_fuller Send Email
May 17, 2013
2:53 pm
Lets try this link http://tech.groups.yahoo.com/group/BCX/files/James%20Fuller/bc9Help.chm...
43441 James Fuller
james_c_fuller Send Email
May 17, 2013
2:54 pm
Does not like spaces !!!!...
Messages 43412 - 43441 of 43441   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