Jump to content

Recommended Posts

  • Administrators
Posted

Jon, did you say at one point that you'd remove the limitation that prevents '(' and ')' from being set as hotkeys?

I just tried 3.0.94, and HotKeySet fails for those characters.

Re-updated. :whistle:


 

Posted

I undo all the changes and make v3 only support DOS formatted files if everyone wants?

Don't do it, Captain!

I do like the changes. Getting a LF when using @LF and getting a CRLF when using @CRLF sounds much more intuitive for me than the old version B)

With the changes to FileWriteLine / FileWrite everything is fine to me. :whistle:

Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)

Posted

Don't do it, Captain!

I do like the changes. Getting a LF when using @LF and getting a CRLF when using @CRLF sounds much more intuitive for me than the old version  B)

With the changes to FileWriteLine / FileWrite everything is fine to me.  :whistle:

I can agree with you and Jon.

The only place is not working is the MsgBox where you need to use only @CR

Posted (edited)

Great to see this @LF change at last. It was bugging me a little. :whistle: Can't see any problems with msgbox. Did you see my little exercise for jon in the original thread?

Edited by tylo

blub

Posted

No problems with msgbox... in fact, it even works better than expected B)

$a = "1" & @CRLF & "2" & @CR & "3" & @LF & "4"
msgbox (0, "",$a)

creates

1
2
3
4

I'm happy :whistle:

Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)

Posted

Great to see this @LF change at last. It was bugging me a little. :angry: Can't see any problems with msgbox. Did you see my little exercise for jon in the original thread?

My old memory

I remember fighting B) with @LF @CR @CRLF for message box display info.

I redid a check now all are displaying the same so just forget my old memory

EVERYTHING FINE with the new @LF,@CR,@CRLF strategy :whistle:

Posted (edited)

Just stumbled over a docu glitch - in IsDeclared the example ain't right:

if IsDeclared ("a")
    msgbox(0,"", "$a not declared")      ; $a has never been assigned
endif

$a=1

if IsDeclared ("a")
    msgbox(0,"", "$a IS declared"  )    ; due to previous $a=1 assignment
endif

First "if"-statement should read

if isDeclared ("a") = 0

or, of course

if not isDeclared ("a")
Edited by Marc

Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)

  • Administrators
Posted

Updated with Valik's ToolTip() (i've altered it slightly so that if the x and y coords are not given the tip is placed near the mouse pointer).

I'm going to be stuck in a hotel on business from tomorrow for weeks and weeks so my net access will be crap, so doc changes only. (oh and whatever happens with the Random() thingy)


 

Posted

Just stumbled over a docu glitch - in IsDeclared the example ain't right:

if IsDeclared ("a")
    msgbox(0,"", "$a not declared")      ; $a has never been assigned
endif

$a=1

if IsDeclared ("a")
    msgbox(0,"", "$a IS declared"  )    ; due to previous $a=1 assignment
endif

First "if"-statement should read

if isDeclared ("a") = 0

or, of course

if not isDeclared ("a")
You rigth Marc. The then is also missing.

the definition also should be "Check if a variable has been declared."

  • Administrators
Posted

Updated with crash fixes.

Well I think it updated, I get a "timeout" error during FTP upload because it takes so long over dialup. So it may be corrupt.

No proper net access till Friday night. Stupid hotels. Stupid job.


 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...