Jump to content

Recommended Posts

Posted

Hello,

I've got a problem ( again lol :D ).

$dag = 02
Send($dag)

It shows 2 , not the zero , also if i do

$week = 02-11
Send($week)

It shows 9 lol.

Is there something to make it read like what is is, instead of changing?

Thanks in advance

Posted

Convert the integers to strings:

$dag = "02"
ConsoleWrite($dag & @CRLF)
$week = String(02-11)
ConsoleWrite($week & @CRLF)

My UDFs and Tutorials:

  Reveal hidden contents

 

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...