Re: Where's the list of still-to-be-written software?

Tech-Archive recommends: Fix windows errors by optimizing your registry



> 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


.



Relevant Pages

  • Re: Formulas containing hard coded values
    ... Dim R As Range, sdoit As String ... MsgBox "Cell contains hard codes" ... ' Grateful thanks to Rick Rothstein ... Dim Fml As String, LCtext As String ...
    (microsoft.public.excel.programming)
  • Search pattern
    ... Dim strfile As String ... Dim bAddressFound As Boolean ... Dim strCurrentChar As String ...
    (comp.databases.ms-access)
  • Auto Write Name and Merge across
    ... Dim Sheetname01 As String ... Dim WeekName01 As String ...
    (microsoft.public.excel.misc)
  • Re: Code problem
    ... initialize the varibles by stepping through the macro until those variables ... I am not sure what Rick had was doing when he gave you that line, ... Dim strappend As String ...
    (microsoft.public.excel.programming)
  • Re: Code problem
    ... Gord Dibben MS Excel MVP ... I am not sure what Rick had was doing when he gave you that line, ... Dim strappend As String ...
    (microsoft.public.excel.programming)