Jump to content

This topic is 7283 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I would like to define a format for a numerical field, so it shows the entered value as SMPTE timecode.

can anyone help me as how to do this?

it would be nice if one could just enter for example 61504 and the field would show '00:00:06:15:04

-

mikkel

Posted

I would like to define a format for a numerical field, so it shows the entered value as SMPTE timecode.

can anyone help me as how to do this?

it would be nice if one could just enter for example 61504 and the field would show '00:00:06:15:04

-

mikkel

Posted

I would like to define a format for a numerical field, so it shows the entered value as SMPTE timecode.

can anyone help me as how to do this?

it would be nice if one could just enter for example 61504 and the field would show '00:00:06:15:04

-

mikkel

Posted

I stumbled with this too. Soren forgot to include the word Attachment. See it in the box above his message?

Lee smile.gif

Posted

I stumbled with this too. Soren forgot to include the word Attachment. See it in the box above his message?

Lee smile.gif

Posted

I stumbled with this too. Soren forgot to include the word Attachment. See it in the box above his message?

Lee smile.gif

Posted

oh, I got it. thank you very much.. To aanyone hwo needs this:

Replace (

Replace (

Replace (

Replace ( Right("0000000000" & GetAsText ( theFieldname );10)

; 9 ; 0 ; ":" )

; 7 ; 0 ; ":" )

; 5 ; 0 ; ":" )

; 3 ; 0 ; ":" )

Posted

oh, I got it. thank you very much.. To aanyone hwo needs this:

Replace (

Replace (

Replace (

Replace ( Right("0000000000" & GetAsText ( theFieldname );10)

; 9 ; 0 ; ":" )

; 7 ; 0 ; ":" )

; 5 ; 0 ; ":" )

; 3 ; 0 ; ":" )

Posted

oh, I got it. thank you very much.. To aanyone hwo needs this:

Replace (

Replace (

Replace (

Replace ( Right("0000000000" & GetAsText ( theFieldname );10)

; 9 ; 0 ; ":" )

; 7 ; 0 ; ":" )

; 5 ; 0 ; ":" )

; 3 ; 0 ; ":" )

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Just a note: there are only 4 pairs in timecode (hours:minutes:seconds:frames), so if anyone needs this, it should be:

Replace (

Replace (

Replace ( Right("00000000" & GetAsText ( theFieldname ) ; 8 ) ;

7 ; 0 ; ":" ) ;

5 ; 0 ; ":" ) ;

3 ; 0 ; ":" )

There is also an older thread here that includes entry validation.

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Just a note: there are only 4 pairs in timecode (hours:minutes:seconds:frames), so if anyone needs this, it should be:

Replace (

Replace (

Replace ( Right("00000000" & GetAsText ( theFieldname ) ; 8 ) ;

7 ; 0 ; ":" ) ;

5 ; 0 ; ":" ) ;

3 ; 0 ; ":" )

There is also an older thread here that includes entry validation.

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Just a note: there are only 4 pairs in timecode (hours:minutes:seconds:frames), so if anyone needs this, it should be:

Replace (

Replace (

Replace ( Right("00000000" & GetAsText ( theFieldname ) ; 8 ) ;

7 ; 0 ; ":" ) ;

5 ; 0 ; ":" ) ;

3 ; 0 ; ":" )

There is also an older thread here that includes entry validation.

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Same here, always been inserting something from one end to the next start... cool.gif

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Same here, always been inserting something from one end to the next start... cool.gif

Posted

Soren,

Replace() nothing with something (i.e, "Insert")? That's great, I have to remember this!

Same here, always been inserting something from one end to the next start... cool.gif

This topic is 7283 days old. Please don't post here. Open a new topic instead.

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
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.