Search String: Display: Description: Sort:

Results:

References: [ +from:charles@declareSub.com: 1570 ]

Total 1570 documents matching your query.

1. Re: Dealing with multi-processor or multi-core (shared memory semi solution) (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Tue, 3 Jun 2008 11:34:14 -0400
That's right, and it's part of the analysis when deciding whether to parallelize a computation. Charles Yeomans _______________________________________________ Unsubscribe or switch delivery mode: <h
/listarchives/realbasic-nug/2008-06/msg00090.html (11,340 bytes)

2. Re: How are folder localized? (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 5 Jun 2008 09:45:59 -0400
Include in your app a list of localized names. At runtime, you check to see what language the system is using, and create the folder with the appropriate name. Charles Yeomans _______________________
/listarchives/realbasic-nug/2008-06/msg00239.html (10,229 bytes)

3. Re: How are folder localized? (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 5 Jun 2008 10:27:35 -0400
Ah. Then you should consult the Mac OS developer documentation, which explains how to do this. Charles Yeomans _______________________________________________ Unsubscribe or switch delivery mode: <ht
/listarchives/realbasic-nug/2008-06/msg00242.html (11,140 bytes)

4. perplexing Shell error 127 occurrences (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 5 Jun 2008 19:43:27 -0400
In some Linux console apps, I've got a shell command returning error 127 from time to time. The only thing I can figure is that I'm not passing an absolute path to the command, and perhaps sometimes
/listarchives/realbasic-nug/2008-06/msg00297.html (8,559 bytes)

5. Re: keep Minimized (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 5 Jun 2008 20:38:34 -0400
Then declares for this functionality are readily available. Charles Yeomans _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/l
/listarchives/realbasic-nug/2008-06/msg00303.html (10,379 bytes)

6. Re: perplexing Shell error 127 occurrences (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 5 Jun 2008 20:41:01 -0400
In fact, I have some hazy recollection of seeing such problems with the Shell class before. So absolute paths it shall be, then. Charles Yeomans _______________________________________________ Unsubs
/listarchives/realbasic-nug/2008-06/msg00304.html (13,705 bytes)

7. Re: Accessing XML node attributes? (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Fri, 6 Jun 2008 09:36:37 -0400
Hi folks, I have an XML node that looks like this: <Foo name="Bar"></Foo> How do I get at the 'name' attribute? If you have a reference of type XMLNode, you may need to cast it to XMLElement. Then y
/listarchives/realbasic-nug/2008-06/msg00326.html (8,713 bytes)

8. Re: Get App Icon (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Fri, 6 Jun 2008 16:19:05 -0400
Of course. Christian has a vested interest. :) It would help if you explained a bit more than your original post did. Do you wish to find the app icon of another application, create an app icon for
/listarchives/realbasic-nug/2008-06/msg00341.html (10,657 bytes)

9. Re: XML CDATA Sections (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Mon, 9 Jun 2008 16:14:49 -0400
The umlaut in the City element above is causing the error. If I remove umlaut, no error is raised. If the XML processor treated the CDATA section correctly, nothing in the CDATA section should be pro
/listarchives/realbasic-nug/2008-06/msg00393.html (10,506 bytes)

10. Re: Error 65 when connecting a socket (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 11:42:17 -0400
Hi, I have a strange issue: I have two apps that should communicate to each other using a TCPSocket, but the Error event is called as soon as I use "Connect" on the client side; LastError is 65. I t
/listarchives/realbasic-nug/2008-06/msg00456.html (9,771 bytes)

11. Re: ORM's (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 11:44:27 -0400
How many of you use an ORM in ANY language ? What ones do you use ? I'm particularly interested in - complex joins and queries where the results do not map into a class readily Do you do basic queri
/listarchives/realbasic-nug/2008-06/msg00457.html (9,835 bytes)

12. Re: Help please - "Moving files" (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 15:08:58 -0400
There is exactly one object reference in that line of code. Ergo, the NilObjectException is almost certainly raised because f is nil. That object reference is obtained by assignment from dir.TrueItem
/listarchives/realbasic-nug/2008-06/msg00470.html (10,783 bytes)

13. Re: ORM's (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 15:10:46 -0400
The one thing I still am not keen on is you might as well write SQL instead of LINQ directly in your application It doesn't seem to remove that necessity, just expose it in a different query languag
/listarchives/realbasic-nug/2008-06/msg00471.html (11,785 bytes)

14. Re: Path to executable rather than bundle on OS X (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 16:20:02 -0400
I recall that f=getFolderItem("") would, at one time, return the path inside OS X's bundle right to the executable file. Then this got fixed... which I don't disagree with. The question I have is...
/listarchives/realbasic-nug/2008-06/msg00478.html (9,560 bytes)

15. Re: Help please - "Moving files" (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 16:25:15 -0400
OK, I added If f = nil then msgbox "**f = Nil**" and indeed f is nil, but why is that when I just transferred a few files from C C C to DDD ? and how can I fix that, something needs to be refreshed
/listarchives/realbasic-nug/2008-06/msg00479.html (10,946 bytes)

16. Re: Help please - "Moving files" (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Thu, 12 Jun 2008 17:27:07 -0400
Try recreating the parent FolderItem. Often that will get you the updated information. Charles Yeomans OK, I have moved some files from C C C and placed them in DDD and my app is not aware of that, s
/listarchives/realbasic-nug/2008-06/msg00488.html (13,493 bytes)

17. Re: Enforce UI Language Independent of OS? (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Fri, 13 Jun 2008 18:27:41 -0400
When I wrote the first versions of my main application, it was all done in english - button labels, strings displayed in dialogues, etc. We recently decided it was really time to provide alternate la
/listarchives/realbasic-nug/2008-06/msg00539.html (11,657 bytes)

18. Re: SnowBASIC (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Sat, 14 Jun 2008 11:42:17 -0400
Don't get me wrong. I realize that RS fixes a large number of bugs with each release. But there is also a number of them that just never seem to get fixed. Then again, my perspective could be a bit
/listarchives/realbasic-nug/2008-06/msg00556.html (13,889 bytes)

19. Re: Help understanding a crash log (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Sat, 14 Jun 2008 13:05:38 -0400
Can anybody help me interpret an OS X crash log? The crashed thread listing starts with: Thread 0 Crashed: 0 com.apple.CoreFoundation 0x9080df74 CFRelease + 5 1 com.apple.CoreFoundation 0x9080dff1 C
/listarchives/realbasic-nug/2008-06/msg00558.html (9,272 bytes)

20. Re: Help understanding a crash log (score: 1)
Author: Charles Yeomans <charles@declareSub.com>
Date: Sat, 14 Jun 2008 14:06:24 -0400
On Sat, Jun 14, 2008 at 10:05 AM, Charles Yeomans <charles@declaresub.com> wrote: I'd say something is trying to call CFRelease on a null pointer. The followup question is to ask what function is ca
/listarchives/realbasic-nug/2008-06/msg00562.html (10,577 bytes)


This search system is powered by Namazu