Re: Where's the list of still-to-be-written software?
- From: "Rick Rothstein [MVP - Visual Basic]" <rickNOSPAMnews@xxxxxxxxxxxxxxxxx>
- Date: Wed, 7 Dec 2005 16:45:32 -0500
> If you have the $ dollar sign in a variable
> example
> Dim f$
> f$ = App.Path
> Realbasic can't convert your program unless you remove
> the $ sign from your project.
> There are couple other main issues that you have to change.
> before it will convert, forgot what where they.
Personally, I don't think you should be using the $ sign (or any of the
other type signs) in your program. But, this is easy to fix (but requires a
little time if you have a lot of this stuff. Use VB's Replace functionality
within the IDE. First, and it is important that this is first, replace
Dim f$
with
Dim f As String
then replace f$ with f. By the way, I hope your variable names are a little
more descriptive than that.
Rick
.
- References:
- Where's the list of still-to-be-written software?
- From: MM
- Re: Where's the list of still-to-be-written software?
- From: Gman
- Re: Where's the list of still-to-be-written software?
- From: Richard Jalbert
- Re: Where's the list of still-to-be-written software?
- From: Rick Rothstein [MVP - Visual Basic]
- Where's the list of still-to-be-written software?
- Prev by Date: Re: Can we view a picture from its memory data?
- Next by Date: Re: CORRECTED TEST AND ANSWERS.
- Previous by thread: Re: Where's the list of still-to-be-written software?
- Next by thread: Re: Where's the list of still-to-be-written software?
- Index(es):
Relevant Pages
|