[NM] Were any interesting announcements made @ REALWorld?

2007-05-09 Thread Gary Edge
___ Unsubscribe or switch delivery mode: Search the archives:

Re: HierPop for UB

2007-05-01 Thread Gary Edge
I had asked a similar question a while back and got this response from Dennis Birch. HierPop 1.9 works fine on my Intel Mac now. Gary > I made some minor modifications to the ShowMenu method and it works > fine on my Intel iMac. > > I'm pretty sure the only changes I made were to the following

Re: Anyone remember when 2007r1 was released? - Thanks!

2007-03-27 Thread Gary Edge
On Mar 27, 2007, at 11:52 AM, Kirk Gray wrote: > Yep. January 2, 2007 > > http://www.realsoftware.com/news/pr/2007/2007r1/ > > > Kirk > > > On Mar 27, 2007, at 9:51 AM, Kirk Gray wrote: > >> January 2, 2007 ??? > > ___ > Unsubscribe or switch delivery

Anyone remember when 2007r1 was released?

2007-03-27 Thread Gary Edge
___ Unsubscribe or switch delivery mode: Search the archives:

Re: HeirPop 1.9 on Intel Mac

2007-03-22 Thread Gary Edge
/07, Gary Edge <[EMAIL PROTECTED]> wrote: >> Is anyone having success using hierpop 1.9? The HCMenu result I get >> from a menu selection does not represent the menu item selected. If >> fact it's always the same. I'm not familiar enough with memoryblocks >>

HeirPop 1.9 on Intel Mac

2007-03-22 Thread Gary Edge
Is anyone having success using hierpop 1.9? The HCMenu result I get from a menu selection does not represent the menu item selected. If fact it's always the same. I'm not familiar enough with memoryblocks to diagnose the problem myself. Any ideas? Using Macbook 10.4.9 w/ RB 2007r1 Gary

Defect/issue tracker recommendation

2007-03-15 Thread Gary Edge
Can anyone recommend a decent defect/issue tracker that is relatively inexpensive or possible free? I know the current trend is for them to be web-based solutions, a lot even open source, but for some reason they seem a little incomplete. I seem to be partial to desktop solutions because I d

Re: Opening a local web page in Safari

2007-03-09 Thread Gary Edge
> This is very strange .. a file .htm or .html with wrong creator or > MacType is always as far i know opened in the default browser on Mac > OS X ... > > Have you changed the OS Settings? > Select the html file and check by apple+I > > On 2007-03-09, at 21:02, Gary Edge wr

Re: Opening a local web page in Safari

2007-03-09 Thread Gary Edge
When I look at the MacCreator and MacType of an html file saved by FireFox and textedit, the text is unreadable symbols. Firefox is my default browser. Gary On Mar 9, 2007, at 2:48 PM, Kirk Gray wrote: > The file I'm testing with, both the MacType and MacCreator are set to > "" and the

Re: Opening a local web page in Safari

2007-03-09 Thread Gary Edge
uot; or ".html" > > Kirk > > > On Mar 9, 2007, at 12:14 PM, Gary Edge wrote: > >> Actually, folderitem has a URLPath parameter with the "file://" >> added. >> >> My problem now is that using Launch or ShowURL opens the file in >>

Re: Opening a local web page in Safari

2007-03-09 Thread Gary Edge
Actually, folderitem has a URLPath parameter with the "file://" added. My problem now is that using Launch or ShowURL opens the file in TextEdit. I guess I need to set the MacCreator and/or MacType to something more appropriate. Any ideas? Gary On Mar 9, 2007, at 2:01 PM, Kirk Gray wrote:

Re: Opening a local web page in Safari

2007-03-09 Thread Gary Edge
Come on... that's too easy! Thanks Gary On Mar 9, 2007, at 1:34 PM, Kirk Gray wrote: > In REALbasic: > > ShowURL "file:///Users/me/Desktop/thefile.html" > > > Kirk > > >> On Mar 9, 2007, at 11:23 AM, Gary Edge wrote: >> >> Is there

Opening a local web page in Safari

2007-03-09 Thread Gary Edge
Is there a quick and easy way to to Safari or Firefox to open and display a local web page? I'm not familiar with the use and requirements of AppleScript. Gary ___ Unsubscribe or switch delivery mode:

Re: HTMLViewer exception

2007-03-08 Thread Gary Edge
Try: dim s as string dim f as FolderItem f = DesktopFolder.Child("Test Folder") if not f.Exists then f.CreateAsFolder end s = [Some Valid HTML Code] myHTMLViewer.LoadPage s, f I suspect the folderitem has to actually exist.. Gary On Mar 8, 2007, at 1:55 PM, Chris Griffin wrote:

Does XMLDocument use just XSLT 1.0 or XSLT 2.0 also?

2007-01-27 Thread Gary Edge
Does anyone know if the XMLDocument class will work with XSLT 2.0 stylesheets? I'm using 1.0 stylesheets just fine, but I thought I'd aask before I added 2.0 functions to them. Gary ___ Unsubscribe or switch delivery mode:

Re: Altering exported RB xml objects

2007-01-18 Thread Gary Edge
Thanks Tom, I was thinking about adding custom xml tags to the XML classes that my app would utilize. I didn't want to have to strip these tag out when I exported from my app back to RB Gary On Jan 18, 2007, at 4:42 PM, Tom Benson wrote: You shold be alter them to your hearts conetns as l

Altering exported RB xml objects

2007-01-18 Thread Gary Edge
I'm writing an app that works with RB objects exported as XML Projects. I'd like to add information (additional tags used by my app) to the files and possibly import the object back into RB Projects. Does anyone know if RB will just ignore the added tags or will it choke on them? Gary ___

Re: Accessing resource folder within application bundle

2007-01-16 Thread Gary Edge
I knew it was simple. Thanks Sven Gary On Jan 16, 2007, at 2:59 PM, Sven E Olsson wrote: f = App.ExecutableFile.parent f = f.parent.Child("Resources") if f <> nil then if f.Exists then folder.ResourceFolder = f end if end if Sven E ---

Accessing resource folder within application bundle

2007-01-16 Thread Gary Edge
I remember having code, I believe from Charles, to access the Resource folder within the application bundle. It was very straight forward but I can't recall what it was. Anyone have a solution? Gary ___ Unsubscribe or switch delivery mode:

Re: Extensions or sub classes

2006-11-30 Thread Gary Edge
Thanks. Tom On Nov 30, 2006, at 5:35 AM, Tom Benson wrote: Subclasses can provide much more functionality than a class extension. If your design requires the control to have extra properties or events, then a subclass is a must. If you are only adding extra methods to a framework object

Extensions or sub classes

2006-11-30 Thread Gary Edge
Are there any advantages or disadvantages to using class extensions over sub classes? It seems creating extensions is much neater than having a slew of classes hanging around. Gary ___ Unsubscribe or switch delivery mode:

Using a container control as a canvas.

2006-11-01 Thread Gary Edge
I noticed accidentally the graphics object passed to a container control's paint event allows one to treat the container control as if it was a canvas object. Is it a good idea to draw text and objects directly to a container control's graphics object? Gary ___

Re: Control array of canvases

2006-09-18 Thread Gary Edge
I create the container control dynamically. I'll try embedding it in a window manually to see if I get different a result. I'm also using 2006r3 on MacOS. Thanks, Gary On Sep 18, 2006, at 7:54 AM, CV wrote: You should also get a syntax error on the second line. But the cloning on a co

Control array of canvases

2006-09-17 Thread Gary Edge
I'm trying to create a control array of canvas based buttons. I have a button class (AMAButton) with a super class of canvas. I drag this class to a container control and name it's to 'TemButton', then set it's index to 0. In code I try to clone it: dim b as AMAButton dim caption as strin

Re: CRM

2006-08-24 Thread Gary Edge
Is this the same as vTiger CRM? What platform are you running this on? Gary On Aug 24, 2006, at 12:20 PM, Lynn Fredricks wrote: I have installed Tiger CRM which looks quite good considering it's a free, open source solution. CRM is an area which tends to grow towards vertical industries.

Re: IDE Issues on MacBook

2006-08-15 Thread Gary Edge
Just tried r3 and it appears the interface issues have been addressed. Guess I'll need to re-subscribe. Gary On Aug 15, 2006, at 3:30 AM, Trausti Thor Johannsson wrote: I have no issues on a MBP with r3. Works as well as on my PowerBook. Trausti On 15.8.2006, at 07:31, Gary Edge

IDE Issues on MacBook

2006-08-14 Thread Gary Edge
This may have come up before. I just purchased a MacBook and installed RB 2006r2 on it and the IDE has several issues with icons and graphics not drawing properly, if at all. Also, controls are disappearing and bleeding through pages on pagepanels. Has anyone experienced this? My subscrip

Re: Control Order Dialog

2006-06-14 Thread Gary Edge
Hi DJ, Thanks, I ended up doing that. I thought the dialog was a nice feature though. Gary On Jun 14, 2006, at 9:39 AM, D Jungk wrote: Hi Gary, If you're using RB2006, look under the view menu and check Control Order. It will label all of the controls in the window and you can edit them.

Control Order Dialog

2006-06-13 Thread Gary Edge
I'm have trouble finding the dialog that allows you to drag the order of the controls, which was good for reordering toolbar items. Have they eliminated this dialog? Gary ___ Unsubscribe or switch delivery mode:

Re: listbox.expand event

2006-05-08 Thread Gary Edge
What I meant was, shouldn't I have remembered to add the parameter when I added the event definition to my sub-classed listbox. Thanks Charles Gary On May 8, 2006, at 5:06 PM, Charles Yeomans wrote: On May 8, 2006, at 3:26 PM, Gary Edge wrote: Does anyone else think tha

listbox.expand event

2006-05-08 Thread Gary Edge
Does anyone else think that the listbox.expand event should pass the effected row, being that a hierarchal row can be expanded without being selected? Gary ___ Unsubscribe or switch delivery mode:

Re: Handling iTunes library

2006-05-08 Thread Gary Edge
On a related note, I had some code that allowed reading of the CD Info.cidb file, which stores the track info for all the CDs inserted into your computer, that I believe I still have lying around somewhere. If anyone is interested let me know. Gary On May 8, 2006, at 7:52 AM, Martin Baker

[NM] Re: Adding properties to the Property Panel - Thanks

2006-04-20 Thread Gary Edge
___ Unsubscribe or switch delivery mode: Search the archives of this list here:

Adding properties to the Property Panel

2006-04-20 Thread Gary Edge
I remember being able to have a property, that was added to the sub- class of a control object, included in the properties panel so that variables could be initialized and set while laying out the interface. Why was that feature removed? Gary ___ U

Re: Weird RB2005/2006 behavior

2006-04-08 Thread Gary Edge
Gary On Apr 7, 2006, at 4:14 PM, Gary Edge wrote: All of a sudden yesterday, I can't type code continuously in RB2005r4 and 2006r1. I'd type one character and have to click in the window again to type another character. Most times I have to click twice because the first time

Weird RB2005/2006 behavior

2006-04-07 Thread Gary Edge
All of a sudden yesterday, I can't type code continuously in RB2005r4 and 2006r1. I'd type one character and have to click in the window again to type another character. Most times I have to click twice because the first time the line would disappear. This is even after restarting. Anyone

Re: Listbox disclosure triangles

2006-04-06 Thread Gary Edge
On Apr 6, 2006, at 4:10 PM, Joseph J. Strout wrote: Well, without the disclosure triangles, the user has no way of interacting with the hierarchy -- so all that's left is indentation of the first column. You could accomplish that yourself by drawing the text (indented) in CellTextPaint.

Listbox disclosure triangles

2006-04-06 Thread Gary Edge
Is there any way to hide the disclosure triangles in a hierarchal listbox and still have it function normally in code? Gary ___ Unsubscribe or switch delivery mode: Search the archives of this list h

Re: Enum Casting

2006-04-06 Thread Gary Edge
Try: dim myEnum as OneTwoThree dim i as integer myEnum = OneTwoThree.One i = int32(myEnum) Gary On Apr 6, 2006, at 10:56 AM, GregO wrote: On Apr 6, 2006, at 10:46 am, GregO wrote: The release notes for 2006r1 say: [All] [All] Language: Enum values must be cast explicitly to integer

Re: HierPop and RB2005/2006

2006-04-02 Thread Gary Edge
When I downloaded and ran the example app it stopped during compilation and displayed a message saying it couldn't continue. I just push it aside and went about my business. Reading that you've used it in RB2005, I went back and gave it another look and did get it to work. Thanks On Apr

HierPop and RB2005/2006

2006-03-31 Thread Gary Edge
I downloaded HierPop 1.9, which seems to be the latest version. Anyone have success using this with RB2005/2006? Gary ___ Unsubscribe or switch delivery mode: Search the archives of this list here: <

Re: SQL question

2006-03-29 Thread Gary Edge
Thanks Norman, that worked. Gary On Mar 29, 2006, at 8:51 PM, Norman Palardy wrote: You can try select FieldA || ',' || FieldB, Field C from tableA || is the SQL standard concatenation operator ___ __

SQL question

2006-03-29 Thread Gary Edge
Hi All, For some reason I was under the impression that I could write a query statement that contained an expression that combined columns in the result. e.g.: "select FieldA + ',' + FieldB, Field C from tableA" where FieldA could be a last name and FieldB the first name and FieldC coul

Re: An executable within an executable. . .

2006-03-27 Thread Gary Edge
On Mar 27, 2006, at 2:16 PM, Brian Rathbone wrote: I did a lot of research on this a couple years ago, and though I never found a solution for RB created apps that I was happy with, I could share some of my findings with you off list. I would post them to the list, but that would make the

Embedding graphics into project

2006-03-26 Thread Gary Edge
I work on projects on several different machines, primarily my office machine and my laptop when I'm on the go. My issue is with having to keep track and remember to grab all the graphic files and on the next machine put them in their proper place as I add and edit graphics. I remember in e

Re: GUI designed/created REALSQLDatabase

2006-03-05 Thread Gary Edge
On Mar 5, 2006, at 1:46 PM, Chris Little wrote: You can't. That database becomes an element of the project and it is opened when the app is launched. Unfortunately the IDE doesn't let you export the SQL used to make the database. That's too bad. They should mention that this database

GUI designed/created REALSQLDatabase

2006-03-05 Thread Gary Edge
I'm inclined to created the database and it's tables needed for my app through SQL statements. The docs touch on the fact that a REALSQLDatabase can be created with the Project .Add. Database submenu and designed with a graphical user interface. This process wants to created a physical file

Re: Store colors in an array [Another 'Blame it on my blood sugar level' moment]

2006-02-28 Thread Gary Edge
ng. Thanks for the help Gary On Feb 28, 2006, at 3:23 PM, Tony Spencer wrote: Well, you have no brackets on line 2... On 28 Feb 2006, at 21:16, Gary Edge wrote: For example: dim colors(-1) as color colors = getColorArray() for i = 0 to ubound(colors) g.forecolor = colors(i) // crashe

Re: Store colors in an array

2006-02-28 Thread Gary Edge
On Feb 28, 2006, at 2:23 PM, Joseph J. Strout wrote: OK. So you've created a local array, and stuffed colors into it. Then in another method write: Wait a second -- what you created above was a LOCAL array. It doesn't exist in any other method. for i = 0 to ubound(colors) g.forec

Re: Store colors in an array

2006-02-28 Thread Gary Edge
This is a really weird bug, and I would appreciate more information since I use Color arrays quite often. 1. Which version of REALbasic? RB2005r4 2. Which platform and OS version? OS X 10.4.5, Dual 1.8G PPC G5 3. How big is the array? 20 entries __

Re: Store colors in an array

2006-02-28 Thread Gary Edge
This will work fine for me, thanks Gary On Feb 28, 2006, at 1:04 PM, Seth Duke wrote: On 2/28/06 11:42 AM, "Gary Edge" <[EMAIL PROTECTED]> wrote: I'm trying to store colors in an array: It seems to work with a dictionary: Dim i As Integer Dim Colors As Dictionary Co

Store colors in an array

2006-02-28 Thread Gary Edge
I'm trying to store colors in an array: dim colors(-1) as color colors.append &c75A2DD etc... Then in another method write: for i = 0 to ubound(colors) g.forecolor = colors(i) // crashes here g.drawline next Can colors be stored in a array that way? Gary ___