|
More site info...
|
|
Forum profile page for General on http://www.realsoftware.com.
This report page is the aggregated overview from a single forum: General, located on the Message Board at http://www.realsoftware.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "General" on the Message Board at http://www.realsoftware.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on General:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
87
|
432
|
1,381
|
|
Post:
|
306
|
1,475
|
4,913
|
|
|
General Posting activity graph:
|
Top authors during last week:
user's latest post:
Right click on Canvas
Published (2010-01-05 21:46:00)
Quote: there is no code in the ConstructContextualMenu Not just ConstructContextualMenu ... Anywhere? You never know what triggers the app to crash.
user's latest post:
method recursive call versus goto?
Published (2010-01-05 18:12:00)
timhare wrote: How often do we do the wrong thing just because it's expedient? Far too often! ... confessions of an all-too-often impatient and therefore brute-force coder. Yours truly, A
user's latest post:
method recursive call versus goto?
Published (2010-01-05 18:00:00)
So me some examples of what you are talking about..... I bet there is a "better" way than a bunch of flags
user's latest post:
method recursive call versus goto?
Published (2010-01-05 19:25:00)
Ford Prefect wrote: What does this code actually? If you call fibonacci(3), it will call fibonacci(2) which will call fibonacci(1) and fibonacci(0). fibonacci(3) will then call fibonacci(1)... which has already been calculated before! A much faster way to calculate the number would be to begin with 0 and 1 and just fill an array with the successors until the n-th number is reached. That’s comparing a wasteful method implemented recursively...
user's latest post:
C++ like operators and brace...
Published (2010-01-05 21:52:00)
brisance wrote: This is just another battle over syntactic sugar. RS would be better served expending engineering resources on other more pressing issues, of which there many, and some of them have been unresolved for years. +1 to that too!
user's latest post:
HID Comms on MAC
Published (2010-01-05 06:25:00)
Hi again; I think that I am querying it with: Code: yesno = winHID.install I make this call after a connect and as soon as I make the call I get a dialogue box popping up saying that the MBS plugin has crashed, do I want to report it etc etc it is stored with this: Code: pidOld = SetWindowLong(winHandle, - 4 , AddressOf Events) Thanks
user's latest post:
C++ like operators and brace...
Published (2010-01-05 13:32:00)
taylor-design wrote: npalardy wrote: Not sure why "it makes no sense" but ........ They're not intuitive or obvious to anyone except those who have coded in a C derived language - C/ C++/ Java / PHP So they're not intuitive or obvious to anyone except 99% of programmers on the Earth? I know tons of folks who have never coded in C, C++, Java etc Mostly corporate folks who have done years and years of VB who find RB...
user's latest post:
method recursive call versus goto?
Published (2010-01-05 18:51:00)
As a test, I took a recursive procedure that got a stack overflow at a depth of 2500 calls, moved it to a thread, gave it a stack size of 200MB and achieved a depth of over 2 million calls. (It would have gone deeper, but I gated it at that depth so I wouldn't have to wait for RB to build a stack table for the exception.)
user's latest post:
HID Comms on MAC
Published (2010-01-05 07:39:00)
Well, I don't know exactly what is going wrong. Are this methods in a module? In a Window they won't work because of the self parameter. Why not simply have the plugin look for devices with enumerating them from time to time and working with them until you have an error on sending/reading so you know it has been disconnected? PS: I have signatures and avatars off. Makes reading the forums much easier. Greetings Christian
user's latest post:
C++ like operators and brace...
Published (2010-01-05 16:28:00)
lazydog wrote: Sorry but I think some people are missing the point. Again, that's a matter of opinion. At this point I suggest you write up a feature request through the Feedback app, post the link to it here, and see if anyone signs onto it. Seeing as how we're already on page three and no one has budged in their position, just like other such debates in the forums, it seems to me that would be your best avenue for affecting the...
|
|
|
|
Latest active threads on General::
Started 4 days, 15 hours ago (2010-01-02 12:34:00)
by npalardy
They've always been resisted since RB is not C (or C++ or Java or any other C derivative) The language is designed so that anyone at any skill level can read it and write it As for the tertiary ? operator well .. it can get pretty gnarly (and this is actually not as bad as I've ever written although you often see pre and post increments with pointers) ++a++ = (++b++ = --0--)? 1 : 2 yeehaw ! ...
Started 16 hours, 11 minutes ago (2010-01-06 12:21:00)
by jefftullin
Error handling. Code: IF the list exists IF the value exists IF it makes sense act on the information If you find any corruption, offer a 'delete plist' option to at least reset things back to factory defaults.
Started 18 hours, 18 minutes ago (2010-01-06 10:14:00)
by DaveS
in the keydown event key=uppercase(key) return true
Started 18 hours, 50 minutes ago (2010-01-06 09:42:00)
by Goofie
Contact the author of the site (1) ask for API, so you can use Webservices/SOAP (2) ask for permission to use the info of the website (especially for commercial apps) Good luck
Started 19 hours, 57 minutes ago (2010-01-06 08:35:00)
by 93interactive
found a solution i can live with: Code: if TargetWin32 then sh.Execute "chdir /d " +startFile.Parent.AbsolutePath+ " && " +startFile.AbsolutePath else sh.Execute "cd " +startFile.Parent.ShellPath+ " && " +startFile.ShellPath end still, if someone knows a more cross platform conform way would be great to know.
Started 20 hours, 49 minutes ago (2010-01-06 07:43:00)
by Steve Garman
You aren't in a window's design editor while looking for it are you? If so, try switching to a code editor view.
Started 1 day, 23 hours ago (2010-01-05 04:34:00)
by jefftullin
To detect that a change of row has occurred, use the Changed event. (try adding this code to it for testing) Code: //listbox changed event msgbox "I Changed To " + me .list( me .listindex) To change row in code, set the listindex property Code: Mylist1.listindex = 3
Started 1 day, 3 hours ago (2010-01-06 00:44:00)
by AaronAndrewHunt
I would also like to know the answer to this question about validation. The RB XML parser is supposed to be wrapped version of Expat, so presumably the answers are somewhere here http://expat.sourceforge.net/ or here: http://www.xml.com/pub/a/1999/09/expat/index.html but for the life of me I can't make heads or tails of the stuff there. I wrote my own XML parser instead. But about ...
Started 3 years ago (2006-12-14 04:46:00)
by ycarry
Yes.
If you set ColumnSortDirection to Don't Sort, the user can't sort the column by clicking its header. Don't Sort will block the usual calls to the SortColumn and CompareRows events.
Code:
ListBox1.ColumnSortDirection( 0 )=0 //or SortNone
Disable sort for first column.
|
|
Hot threads for last week on General::
Started 4 days, 15 hours ago (2010-01-02 12:34:00)
by npalardy
They've always been resisted since RB is not C (or C++ or Java or any other C derivative) The language is designed so that anyone at any skill level can read it and write it As for the tertiary ? operator well .. it can get pretty gnarly (and this is actually not as bad as I've ever written although you often see pre and post increments with pointers) ++a++ = (++b++ = --0--)? 1 : 2 yeehaw ! ...
Started 1 week ago (2009-12-30 19:02:00)
by rbasic20091005153
If I remember correctly, there's a Terminal app that will let you find out what you need. I don't remember which one. And I don't have time to find it for you since I'm about to release a new app. Check out the Terminal app list here if you like. Good luck, Tom
Started 1 week ago (2009-12-30 17:32:00)
by MonkeybreadSoftware
Well, ReadMessage never worked well for me, so I prefer the event. You should not use ReadMessage, and sometimes I think I should remove it. Code: while ubound(datas) >= 0 inData = dataS.Pop. CString ( 0 ) wend This code is not good in two places. First you should remove the ".CString(0)" as it will shorten the string returned and using a loop in this case will pop all strings ...
Started 1 day, 11 hours ago (2010-01-05 17:18:00)
by Ford Prefect
How about: Code: Sub doSomethingToX( x as string ) Do // do some stuff to x here Loop Until isOK(x) End Sub Recursion is generally a bad idea if the maximal depth of the recursion can get very high, because it's rather slow and you can get a stack overflow. Edit: Oh, and if you want to edit x if it's not OK, you can either do it in isOK, or you make something ...
Started 4 days, 6 hours ago (2010-01-02 22:29:00)
by DaveS
_________________ Dave Sisemore MacPro, OSX 10.5.8 RB2009r5.1 Note : I am not interested in any solutions that involve custom Plug-ins of any kind
Started 3 days, 5 hours ago (2010-01-03 23:12:00)
by paulg
I haven't experienced this but I would try dumping the app, prefs, app support, cache, etc., downloading a fresh copy from the RB download page and trying again.
Started 4 days, 15 hours ago (2010-01-02 12:41:00)
by npalardy
AaronAndrewHunt wrote: My RB software is crashing directly at startup on an old G3 ibook running 10.3.9. I have this crash report. Can anyone tell me, is this crash coming directly from RB or from plugins? Thread 0 Crashed: <<<<<<<< the thread that crashed 0 libobjc.A.dylib 0x972f81ec objc_msgSend + 0xc <<<<<<< where it crashed 1 rbframework.dylib 0x019c1954 AutoreleasePool::...
Started 4 days, 9 hours ago (2010-01-02 18:37:00)
by mjh
_________________ Michael J. Hußmann
http://digicam-experts.de
Started 1 day, 18 hours ago (2010-01-05 09:58:00)
by pregan
If I read what you are trying to accomplish, I'm willing to bet that classes appear in the XML in the same order in which they were added to the project, because the order of at least the Open() events for interface classes depends on the order in which they were added (and why that order would matter to compiling is left to RB's proprietary format). Perhaps exporting a class all by itself as ...
Started 4 days, 10 hours ago (2010-01-02 18:00:00)
by classone
a MODAL window means that nothing else should occur in the app. until the user deals with whatever issue is being presented by the modal window. IMHO, cmd-Q should do nothing while the modal window is shown. It's closing of your window is strange behavior. Not sure what may be going on in your code.
|
|