>> ==============================
>> An error has occurred while compiling this project.
>>
>> Message: syntax error.
>> File: Office
>> Location: SourceListItem.Get
>> Code:
>> ==============================
I've seen this 'File: Office' error in the following situation:
Project (.rbp) that has
- encrypted classes
- encrypted pictures
- File Type Set
I saved the project as .rbvcp to another location
When opening the .rbvcp and trying to 'run', I got the 'File: Office' error.
If your 'SourceListItem.Get' is encrypted:
unencrypt it, then the debugger will show where the error occured.
in my case it was one of the following:
- file type set (it was empty when saved as .rbvcp)
- picture
>Some of the users who are downloading my sample project
are you providing a .rbvcp or a .rbp?
If you're providing your project as .rbvcp, you might also run into other
issues:
Constants that have a 'Platform'-Target can loose this when opened in a RB-IDE
that runs in another language than yours.
Example: English RB-IDE saves it as 'Any', German IDE saves it as 'Alle'
-> if the 'english .rbvcp' is opened in a german IDE, the
platform-target will be 'empty'...
Jürg
______________________________________
Roth Soft
Kellhofstrasse
CH-8476 Stammheim
E-Mail: juerg.raess@lehreroffice.ch
Internet: http://www.lehreroffice.ch
______________________________________
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
From Fri 30 Jan 2009 04:54:50 EST
Delivered-To: listarchive@realsoftware.com
Received: by 10.100.194.18 with SMTP id r18cs5724anf;
Fri, 30 Jan 2009 01:56:09 -0800 (PST)
Received: by 10.65.132.13 with SMTP id j13mr632997qbn.115.1233309369309;
Fri, 30 Jan 2009 01:56:09 -0800 (PST)
Return-Path: <realbasic-nug-bounces@lists.realsoftware.com>
Received: from advanced107.inmotionhosting.com (advanced107.inmotionhosting.com
[74.124.194.228])
by mx.google.com with ESMTP id 27si1066047qbw.0.2009.01.30.01.56.08;
Fri, 30 Jan 2009 01:56:09 -0800 (PST)
Received-SPF: neutral (google.com: 74.124.194.228 is neither permitted nor
denied by best guess record for domain of
realbasic-nug-bounces@lists.realsoftware.com) client-ipt.124.194.228;
Authentication-Results: mx.google.com; spf=neutral (google.com: 74.124.194.228
is neither permitted nor denied by best guess record for domain of
realbasic-nug-bounces@lists.realsoftware.com)
smtp.mail=realbasic-nug-bounces@lists.realsoftware.com
Received: from localhost ([127.0.0.1] helovanced107.inmotionhosting.com)
by advanced107.inmotionhosting.com with esmtp (Exim 4.69)
(envelope-from <realbasic-nug-bounces@lists.realsoftware.com>)
id 1LSq5S-0003IR-Ji; Fri, 30 Jan 2009 01:54:58 -0800
Received: from imo-m13.mx.aol.com ([64.12.143.101] helo=imo-m13.mail.aol.com)
by advanced107.inmotionhosting.com with esmtp (Exim 4.69)
(envelope-from <Mnogojazyk@aol.com>) id 1LSq5R-0003IB-L9
for realbasic-nug@lists.realsoftware.com;
Fri, 30 Jan 2009 01:54:57 -0800
Received: from Mnogojazyk@aol.com
by imo-m13.mx.aol.com (mail_out_v39.1.) id w.d2f.37ae54f5 (29672)
for <realbasic-nug@lists.realsoftware.com>;
Fri, 30 Jan 2009 04:54:50 -0500 (EST)
From: Mnogojazyk@aol.com
Message-ID: <d2f.37ae54f5.36b4286a@aol.com>
Date: Fri, 30 Jan 2009 04:54:50 EST
Subject: Re: Quickest Way to Build a String?
To: realbasic-nug@lists.realsoftware.com
MIME-Version: 1.0
X-Mailer: Thunderbird - Mac OS X sub 310
X-Spam-Flag: NO
X-Content-Filtered-By: Mailman/MimeDel 2.1.10
X-BeenThere: realbasic-nug@lists.realsoftware.com
X-Mailman-Version: 2.1.10
Precedence: list
Reply-To: REALbasic NUG <realbasic-nug@lists.realsoftware.com>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Sender: realbasic-nug-bounces@lists.realsoftware.com
Errors-To: realbasic-nug-bounces@lists.realsoftware.com
X-AntiAbuse: This header was added to track abuse, please include it with any
abuse report
X-AntiAbuse: Primary Hostname - advanced107.inmotionhosting.com
X-AntiAbuse: Original Domain - realsoftware.com
X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]
X-AntiAbuse: Sender Address Domain - lists.realsoftware.com
Hello, all...
In a message dated 1/29/09 6:17 PM, Jeremy Cowgar writes:
> What is the quickest/best way to build a string? For instance:
>
> myString = "John Doe"
> myString = myString + " had "
> myString = myString + " a "
> myString = myString + " dog. "
>
> is probably not the best way. Is there a class out there that deals with
> a buffer and expands the buffer when necessary?
>
> myBuf.Append "John Doe"
> myBuf.Append " had "
> ... etc ...
>
Does Theodore H. Smith's FastString class satisfy you?
Here's the link: <http://www.elfdata.com/>
-- Charles Kelley.
**************
>From Wall Street to Main Street and
everywhere in between, stay up-to-date with the latest news.
(http://aol.com?ncid=emlcntaolcom00000023)
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|