Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ntb-clips · The NoteTab Clips List

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 20543 - 20572 of 23787   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#20543 From: "ebbtidalflats" <ebbtidalflats@...>
Date: Thu Apr 1, 2010 2:39 pm
Subject: Re: NTB via commandline
ebbtidalflats
Send Email Send Email
 
Command prompt, type:
"start /?"

--- In ntb-clips@yahoogroups.com, "brother.gabriel" <brgabriel@...> wrote:
>
> No, actually; where would I learn that?  It isn't in the help file under
commandline.
>
> --- In ntb-clips@yahoogroups.com, "diodeom" <diomir@> wrote:
> > ...
> > Have you tried:
> > start /min notepro.exe

#20544 From: "Sheri" <silvermoonwoman@...>
Date: Sat Apr 3, 2010 6:33 pm
Subject: Re: [Clip] NTB via commandline
silvermoonwo...
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, Don Daugherty <daugherty@...> wrote:
>
> On 3/30/2010 2:20 PM, brother.gabriel wrote:
> > Yes, I know we can do that; and you can also close NTB from the
> > commandline, but I want to run NTB invisibly. Maybe something
> > could be written into the code to hide NTB, or to keep it
> > minimized to the tray while it runs scripts?
> >
> I haven't tried it, but it sounds like ^!MinimizeApp ought to do
> what you want -- so long as ^!Keyboard commands are not part of
> your Clip.

I would only add that if you start NoteTab with switches on the commandline to
make it automatically run a clip (e.g., that uses ^!MinimizeApp), you must also
specify a file to be loaded on the commandline to ensure that NoteTab is started
in a state that can run clips. In other words, you want to guard against NoteTab
starting up with [Clips] as the active document tab.

#20545 From: "bozlawless" <bozlawless@...>
Date: Fri Apr 9, 2010 2:00 am
Subject: Memory Recall Help
bozlawless
Send Email Send Email
 
IS it possible to store the answer  of a math problem then recall it later in
the same clip ?

EXAMPLE

^$CALC((^?[A=]+^?[B=]);4)$  say it =C store "C" and use it in spot

^$CALC((^?[C=]+^?[D=]);4)$ ECT

Just like on a calculator and use it in the same clip at another spot
  Memory recall Help

#20546 From: "Sheri" <silvermoonwoman@...>
Date: Fri Apr 9, 2010 4:01 am
Subject: Re: Memory Recall Help
silvermoonwo...
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, "bozlawless" <bozlawless@...> wrote:
>
>  IS it possible to store the answer  of a math problem then recall it later in
the same clip ?
>
> EXAMPLE
>
> ^$CALC((^?[A=]+^?[B=]);4)$  say it =C store "C" and use it in spot
>
> ^$CALC((^?[C=]+^?[D=]);4)$ ECT
>
> Just like on a calculator and use it in the same clip at another spot
>  Memory recall Help
>

You can store C as a variable, %C%
To retrieve the result in it, put a caret in front of it, ^%C%

^!Set %C%=^$CALC((^?[A=]+^?[B=]);4)$
^!Set %E%=^$CALC((^%C%+^?[D=]);4)$
^!Info E=^%E%

#20547 From: "bozlawless" <bozlawless@...>
Date: Fri Apr 9, 2010 9:33 am
Subject: Re: Memory Recall Help
bozlawless
Send Email Send Email
 
This does what I wanted. But is there a way I can have it put the  calculation
in the file. And not just pop up a dialog box?

Mike





--- In ntb-clips@yahoogroups.com, "Sheri" <silvermoonwoman@...> wrote:
>
> --- In ntb-clips@yahoogroups.com, "bozlawless" <bozlawless@> wrote:
> >
> >  IS it possible to store the answer  of a math problem then recall it later
in the same clip ?
> >
> > EXAMPLE
> >
> > ^$CALC((^?[A=]+^?[B=]);4)$  say it =C store "C" and use it in spot
> >
> > ^$CALC((^?[C=]+^?[D=]);4)$ ECT
> >
> > Just like on a calculator and use it in the same clip at another spot
> >  Memory recall Help
> >
>
> You can store C as a variable, %C%
> To retrieve the result in it, put a caret in front of it, ^%C%
>
> ^!Set %C%=^$CALC((^?[A=]+^?[B=]);4)$
> ^!Set %E%=^$CALC((^%C%+^?[D=]);4)$
> ^!Info E=^%E%
>

#20548 From: "Sheri" <silvermoonwoman@...>
Date: Fri Apr 9, 2010 12:50 pm
Subject: Re: Memory Recall Help
silvermoonwo...
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, "bozlawless" <bozlawless@...> wrote:
>
>
> This does what I wanted. But is there a way I can have it put the
> calculation in the file. And not just pop up a dialog box?

Use one of the insert commands. Either of the following would probably do:

Use "^!InsertText " instead of "^!Set %E%=" and remove the ^!Info line

or

Use "^!InsertText ^%E%" instead of "^!Info E=^%E%"

Regards,
Sheri

#20549 From: "ebbtidalflats" <ebbtidalflats@...>
Date: Fri Apr 9, 2010 8:08 pm
Subject: Re: Memory Recall Help
ebbtidalflats
Send Email Send Email
 
Let me stick my neck out and speculate, that what you really want is to use the
result at a later time or date. NoteTab can do that too!

You don't even have to bother with file handling.


Take the result from Sheri's calculation, and create PERMANENT variables
instead:


> --- In ntb-clips@yahoogroups.com, "Sheri" <silvermoonwoman@> wrote:
> > ... store C as a variable, %C%
> > To retrieve the result in it, put a caret in front of it, ^%C%
> >
> > ^!Set %C%=^$CALC((^?[A=]+^?[B=]);4)$
> > ^!Set %E%=^$CALC((^%C%+^?[D=]);4)$
> > ^!Info E=^%E%

^!SaveValue MikesMath:C=^%C%
^!SaveValue MikesMath:E=^%E%

Or, you could save the data in 1 step (omitting the temporary variable):

^!SaveValue MikesMath:C=^$CALC((^?[A=]+^?[B=]);4)$
^!SaveValue MikesMath:E=^$CALC((^%C%+^?[D=]);4)$


even if you close NoteTab, and shut off your PC, you can retrieve this data the
next time you start up again (unless you OVERWRITE the data before that), with:

^!Set %c%=^$GetValue(MikesMath:C)$
^!Set %e%=^$GetValue(MikesMath:E)$


Read the section about variables in NoteTab help.



Cheers,

Eb

--- In ntb-clips@yahoogroups.com, "bozlawless" <bozlawless@...> wrote:
>
> This does what I wanted. But is there a way I can have it put the  calculation
in the file. And not just pop up a dialog box?
>
> Mike
>
...

#20550 From: "dpasseng" <don@...>
Date: Tue Apr 13, 2010 2:27 pm
Subject: pasting of tab delimited stuff not right
dpasseng
Send Email Send Email
 
I switched from old laptop to new laptop.

I moved notetab from retired machine to new machine.

I often paste information back and forth between notetab and excel ... but
suddenly when I paste tab delimited data to excel, it has square boxes instead
of tabs so columns are not honored.

Have not had this issue in the paste.

I am on win XP and excel 2003.

#20551 From: loro <tabbie@...>
Date: Tue Apr 13, 2010 2:58 pm
Subject: Re: [Clip] pasting of tab delimited stuff not right
yastupidhoo
Send Email Send Email
 
>I often paste information back and forth between notetab and excel
>... but suddenly when I paste tab delimited data to excel, it has
>square boxes instead of tabs so columns are not honored.

Is the Excel doc using Unicode?

Lotta

#20552 From: Margaret Peloquin <peloquin@...>
Date: Tue Apr 13, 2010 5:10 pm
Subject: Re: Re: [Clip] pasting of tab delimited stuff not right
margaret.pel...
Send Email Send Email
 
I sometimes have to use the Modify function and Convert to ascii to
paste into Excel.

On 4/13/2010 9:58 AM, loro wrote:
>
>
> >I often paste information back and forth between notetab and excel
> >... but suddenly when I paste tab delimited data to excel, it has
> >square boxes instead of tabs so columns are not honored.
>
> Is the Excel doc using Unicode?
>
> Lotta
>
>

--
++++++++++++++++++++++++++++++++++++++++++++++++++++
Margaret Peloquin, Head Librarian / EVC
Austin Community College
3401 Webberville Rd, Austin, Texas 78702
512.223.5117 || Fax: 512.223.5111
peloquin@... || http://library.austincc.edu



[Non-text portions of this message have been removed]

#20553 From: Don <don@...>
Date: Wed Apr 14, 2010 2:21 am
Subject: Re: [Clip] pasting of tab delimited stuff not right
dpasseng
Send Email Send Email
 
On 4/13/2010 10:58 AM, loro wrote:
> Is the Excel doc using Unicode?
> Lotta
>
Heck if I know - help me Rhonda (or Lotta) :-)

#20554 From: Don <don@...>
Date: Wed Apr 14, 2010 2:26 am
Subject: Re: [Clip] pasting of tab delimited stuff not right
dpasseng
Send Email Send Email
 
On 4/13/2010 1:10 PM, Margaret Peloquin wrote:
> I sometimes have to use the Modify function and Convert to ascii to
> paste into Excel.
>
> On 4/13/2010 9:58 AM, loro wrote:
>
>
Tried that, still getting the square boxes where tabs should be.  I
tried hunting around in excel under tools/options.

I realize this may be off topic and perhaps should move, but I do this
as part of a number of clips.

#20555 From: "John Shotsky" <jshotsky@...>
Date: Wed Apr 14, 2010 2:50 am
Subject: RE: [Clip] pasting of tab delimited stuff not right
shotsky1
Send Email Send Email
 
Make sure NT's default new document type is Ascii, or DOS/Windows. Make sure
tab type is 'real'. (Options, Documents)



Copy (Ctrl-A, Ctrl-C) your text in NoteTab, and Paste it (Ctrl-V) into a new
document. If it looks OK, then you're proven that there are high order bits
set in your document. The new document should be 'clean'. It is not
sufficient to just save the original document, it will not clear the high
bits.



You can investigate one of the boxes by highlighting it first, then run the
following clip:

^!Info \x^$IntToHex(^$CharToDec(^$StrCopyLeft("^$GetSelection$";1)$)$)$



Regards,

John



From: ntb-clips@yahoogroups.com [mailto:ntb-clips@yahoogroups.com] On Behalf
Of Don
Sent: 13 April, 2010 07:27 PM
To: ntb-clips@yahoogroups.com
Subject: Re: [Clip] pasting of tab delimited stuff not right





On 4/13/2010 1:10 PM, Margaret Peloquin wrote:
> I sometimes have to use the Modify function and Convert to ascii to
> paste into Excel.
>
> On 4/13/2010 9:58 AM, loro wrote:
>
>
Tried that, still getting the square boxes where tabs should be. I
tried hunting around in excel under tools/options.

I realize this may be off topic and perhaps should move, but I do this
as part of a number of clips.





[Non-text portions of this message have been removed]

#20556 From: Don <don@...>
Date: Wed Apr 14, 2010 3:44 am
Subject: Re: [Clip] pasting of tab delimited stuff not right
dpasseng
Send Email Send Email
 
On 4/13/2010 10:50 PM, John Shotsky wrote:
> Make sure NT's default new document type is Ascii, or DOS/Windows. Make sure
> tab type is 'real'. (Options, Documents)
>
>
>
> Copy (Ctrl-A, Ctrl-C) your text in NoteTab, and Paste it (Ctrl-V) into a new
> document. If it looks OK, then you're proven that there are high order bits
> set in your document. The new document should be 'clean'. It is not
> sufficient to just save the original document, it will not clear the high
> bits.
>
>
>
> You can investigate one of the boxes by highlighting it first, then run the
> following clip:
>
> ^!Info \x^$IntToHex(^$CharToDec(^$StrCopyLeft("^$GetSelection$";1)$)$)$
>
>
>
> Regards,
>
> John
Thank you, thank you, thank you.

I had already made sure that tab was real.

I set view>options>save as to Dos/Windows
Opened a new document, copied the old to it, and it pastes correctly to
excel I believe now.
I don't see ASCII as an option there.
It was set to original before that.

#20557 From: "orkgandalf" <orkgandalf@...>
Date: Thu Apr 15, 2010 2:19 pm
Subject: Clip to get the day of the week of a given date yyyymmdd
orkgandalf
Send Email Send Email
 
I'm looking for a clip to calculate the day of the week according to a given
date in this way:

I write
20041106-
then I click a key combination and notetab calculates and completes:
20041106-Fri

Let me know if someone has ever needed somethign like this.
Thanks. Orks.

#20558 From: "diodeom" <diomir@...>
Date: Thu Apr 15, 2010 3:01 pm
Subject: Re: Clip to get the day of the week of a given date yyyymmdd
diodeom
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, "orkgandalf" <orkgandalf@...> wrote:
>
> I'm looking for a clip to calculate the day of the week according to a given
date in this way:
>
> I write
> 20041106-
> then I click a key combination and notetab calculates and completes:
> 20041106-Fri
>
> Let me know if someone has ever needed somethign like this.
> Thanks. Orks.
>

If you skip the dash and write and/or highlight just:

20100415

This clip should produce what you want:

^!InsertText ^$GetDateFromInt(^$GetDateToInt(^&;yyyymmdd)$;yyyymmdd-ddd)$

#20559 From: Jeff <jeff@...>
Date: Thu Apr 15, 2010 4:39 pm
Subject: Re: [Clip] Clip to get the day of the week of a given date yyyymmdd
scismgenie
Send Email Send Email
 
Useful for genealogy, calculating  dates  referenced as  "Last Tuesday"
as an example. A lot of sources, (newspapers)  have a publication date
and state "20 Inst" which would the  the 20th of the current month, or
Ult. (the last month).

Also a lot of genealogy sources like   grave markers and  Death Certs,
list age in Tears, months and days, but fail to state the actual birth
date. calculating that would be a good  NoteTab clip, although there are
web-based calculators already out there.

Jeff

On 4/15/2010 7:19 AM, orkgandalf wrote:
>
> I'm looking for a clip to calculate the day of the week according to a
> given date in this way:
>
> I write
> 20041106-
> then I click a key combination and notetab calculates and completes:
> 20041106-Fri
>
> Let me know if someone has ever needed somethign like this.
> Thanks. Orks.
>
>

--


Jeffery G. Scism, IBSSG
Flockmaster,
International Blacksheep Society of Genealogists

http://ibssg.org/blacksheep/

Play AstroEmpires
http://beta.astroempires.com/?ref=B.115420

"There is no worse tyranny than to force a man to pay for what he does not want
merely because you think it would be good for him."

AND: "There ain't no such thing as a free lunch."

Robert Anson Heinlein, 'The Moon is a Harsh Mistress' 1966



Politicians invest in "Pork futures", the more PORK, the better their future.
WE need a "Low Cholesterol Diet."





[Non-text portions of this message have been removed]

#20560 From: "mark.alexander23" <mark.alexander23@...>
Date: Fri Apr 16, 2010 3:35 pm
Subject: ClipCode Syntax MENU - Run "Insert Date/Time"
mark.alexand...
Send Email Send Email
 
I am trying to get "Insert Date/Time" to work

I found In
ClipCode Syntax.otl
^!Menu NameSequence

This works
^!MENU Document/Insert Document Name
^!MENU File/Exit

This does not work
^!MENU Document/Insert Date/Time

What am I doing wrong?

#20561 From: hsavage <hsavage@...>
Date: Fri Apr 16, 2010 11:30 pm
Subject: Re: [Clip] ClipCode Syntax MENU - Run "Insert Date/Time"
hrs62930
Send Email Send Email
 
mark.alexander23 wrote:
  > I am trying to get "Insert Date/Time" to work
  >
  > I found In
  > ClipCode Syntax.otl
  > ^!Menu NameSequence
  >
  > This works
  > ^!MENU Document/Insert Document Name
  > ^!MENU File/Exit
  >
  > This does not work
  > ^!MENU Document/Insert Date/Time
  >
  > What am I doing wrong?

Mark,

Try it as it is shown in the Help file.

^!Menu Document/"Insert Date/Time"

Double quotes because of the space in the Insert command.

You may also need to format the output to suit.
That's in View/Options/Tools Date Filter.

·············································
ºvº SL_day# 106 - created 2010.04.16_18.23.43

    I'm not tense, just terribly, terribly alert.

   € hrs €  hsavage € pobox € com

  >^~ ^

#20562 From: Alec Burgess <buralex@...>
Date: Fri Apr 16, 2010 11:34 pm
Subject: Re: [Clip] ClipCode Syntax MENU - Run "Insert Date/Time"
alecb3ca
Send Email Send Email
 
Not tested but I think you probably need to quote Insert Date/Time ie.
^!MENU Document/"Insert Date/Time"



On 2010-04-16 11:35, mark.alexander23 wrote:
> I am trying to get "Insert Date/Time" to work
>
> I found In
> ClipCode Syntax.otl
> ^!Menu NameSequence
>
> This works
> ^!MENU Document/Insert Document Name
> ^!MENU File/Exit
>
> This does not work
> ^!MENU Document/Insert Date/Time
>
> What am I doing wrong?
>
>
>

#20563 From: "Sheri" <silvermoonwoman@...>
Date: Sat Apr 17, 2010 5:21 am
Subject: Re: ClipCode Syntax MENU - Run "Insert Date/Time"
silvermoonwo...
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, "mark.alexander23" <mark.alexander23@...>
wrote:
>
> I am trying to get "Insert Date/Time" to work
>
> I found In
> ClipCode Syntax.otl
> ^!Menu NameSequence
>
> This works
> ^!MENU Document/Insert Document Name
> ^!MENU File/Exit
>
> This does not work
> ^!MENU Document/Insert Date/Time
>
> What am I doing wrong?
>

Unless you've turned off the prompting (bypass clip wizards) option, if you
actually run the clipcode syntax clip and select ^!Menu, it should run a dialog
that lets you click Document then click Insert Date/Time. It inserts it into the
current document as:

^!Menu Document/"Insert Date/Time"

If the clip's option is configured to bypass clip wizards, you don't get the
dialog. Then it just inserts ^!Menu NameSequence

Regards,
Sheri

#20564 From: "paulmaser" <paul@...>
Date: Sat Apr 17, 2010 2:34 pm
Subject: Re: ClipCode Syntax MENU - Run "Insert Date/Time"
paulmaser
Send Email Send Email
 
It might be easier to use the ^$GetDate function, then you can format the output
to meet your needs without setting it in Options.
Example from a clip:
^!Set %datetime%=^$GetDate(dddd, mmmm dd, yyyy: hh:mm)$
^!Info ^%datetime%

Paul

--- In ntb-clips@yahoogroups.com, "mark.alexander23" <mark.alexander23@...>
wrote:
>
> I am trying to get "Insert Date/Time" to work

#20565 From: loro <tabbie@...>
Date: Mon Apr 19, 2010 8:41 am
Subject: Clipboard boilerplate for cn_le
yastupidhoo
Send Email Send Email
 
Hi!

cn_le asked about something like this on the Basic list and since I
happened to have an old clip that just needed a little cleaning up I
thought I'd post it... Turned out the cleaning up took 4 hours. More
about that below.

Copy between the lines. Create a new library by right-clicking over
the combo box on top of the clipbook, then right-click in the blank
clipbook window and choose "Add from Clipboard". This will result in
4 lines. The first one turns the clipboard watching on and off. The
second is for clearing all collected snips. The third one is grayed
out and can't be clicked. That's the clip that makes something happen
when you copy text to the clipboard. The fourth, the red one, is just
a delimiter, but it's needed for the Clear clip to work correctly, so
don't delete it. The snips that are saved from the clipbook will show
up below it. Everything below this line will be deleted when you run
the Clear clip. There's one long line that will probably be broken by
email. You have to join it to one line again. It's marked out with comments.

-----------------------------------------------------
H="Status On/Off"

^!Set %watch_clipboard%=^?{Watch clipboard==ON^=1|OFF^=0}

H="Clear collected text"
^!Set %ww%=^$IsWordWrap$
^!Set %curr_doc%=^$GetDocIndex$
^!SetWordWrap off
^!SetScreenUpdate off

^!Open "^$GetLibraryPath$^$GetLibraryName$.clb"
^!Jump text_start
^!Find "^%sc%Text collected from clipboard""
^!Jump select_end
^!Set %deltxt%=^$GetRow$:^$GetCol$
^!Jump text_end
^!SelectTo ^%deltxt%
^!Menu Edit/Delete
^!Save
^!Export "^##" ANSI
^!Close


^!SetDocIndex ^%curr_doc%
^!If ^%ww%=1 next else end
^!SetWordWrap on
^!ReloadLibrary

H="_OnClipboardChange"

^!IfFalse ^%watch_clipboard% end else next
; Long line follows
^!AppendToFile "^$GetLibraryPath$^$GetLibraryName$.clb"
^%nl%^%nl%h="^$StrReplace("^p";"^%space%";"^$StrCopy("^$GetClipboard$";1;50)$";f\
alse;false)$"^%nl%^$GetClipboard$^%nl%
; End long line
^!ReloadLibrary

H=";Text collected from clipboard"
------------------------------------------------------------------

Now to the 4 hour cleanup. First the clip worked. Then it didn't.
After some fiddling it started to work again and then it stopped
again. That is, it  stopped to show the copied text in the clipbook
but when I opened the library as a document the text was there and it
looked perfectly alright. Drove me nuts. After three hours or so I
discovered that when viewed in the clip editor the copied text was
inserted under the red heading, as content!

At last I opened the clb in another editor and it showed that some
line endings were windows CR/LF and some were LF and that's what made
Notetab screw up as it turned out! I have Notetab set to save with
Unix line endings but the clipbook editor of course uses Windows
ones. Since the clip opens the library as a document and saves it
again I ended up with line ending clutter. Hence the ^!Export in the
clip. That fixed it (touch wood!). I learnt something from this, so I
thought I should tell the gruesome story and maybe save someone else
from pulling their hair out as I did.

I'll direct cn_le here shortly.

Lotta

#20566 From: loro <tabbie@...>
Date: Mon Apr 19, 2010 9:53 am
Subject: Re: [Clip] Clipboard boilerplate for cn_le
yastupidhoo
Send Email Send Email
 
Always a mistake somewhere...

In the middle there's this.

>....
>^!Export "^##" ANSI
>^!Close
>
>
>^!SetDocIndex ^%curr_doc%
>^!If ^%ww%=1 next else end
>^!SetWordWrap on
>^!ReloadLibrary
>...

Move ^!ReloadLibrary to before the if statement or it isn't to any
use. I was sprinkling those all over and deleted the wrong one it
seems. It doesn't matter really, because Notetab seems to update
either you tell it to or not, but it feels safer to have those
^!RealodLibrary commands for some reason.

Lotta

#20567 From: Larry Hamilton <lmh@...>
Date: Mon Apr 19, 2010 12:37 pm
Subject: Re: [Clip] Clipboard boilerplate for cn_le
lm_hamilton
Send Email Send Email
 
Not sure what's up, and no time to step through it just now, but it is not
working for me.

~ Larry

On Mon, Apr 19, 2010 at 4:41 AM, loro <tabbie@...> wrote:

> Hi!
>
> cn_le asked about something like this on the Basic list and since I
> happened to have an old clip that just needed a little cleaning up I
> thought I'd post it... Turned out the cleaning up took 4 hours. More
> about that below.
>

<snip>


[Non-text portions of this message have been removed]

#20568 From: Don <don@...>
Date: Mon Apr 19, 2010 12:46 pm
Subject: Re: [Clip] Clipboard boilerplate for cn_le
dpasseng
Send Email Send Email
 
On 4/19/2010 8:37 AM, Larry Hamilton wrote:
> Not sure what's up, and no time to step through it just now, but it is not
> working for me.
>
> ~ Larry
>
Larry, was this before or after the fix?
I used to have a little freeware program that did this ...

#20569 From: "Lawrence" <lmh@...>
Date: Mon Apr 19, 2010 3:00 pm
Subject: Re: [Clip] Clipboard boilerplate for cn_le
lm_hamilton
Send Email Send Email
 
--- In ntb-clips@yahoogroups.com, Don <don@...> wrote:
>
> On 4/19/2010 8:37 AM, Larry Hamilton wrote:
> > Not sure what's up, and no time to step through it just now, but it is not
> > working for me.
> >
> > ~ Larry
> >
> Larry, was this before or after the fix?
> I used to have a little freeware program that did this ...

I made the fix and made sure the long line was correct before trying the clip
for the first time. So will have to review and see what I may have done wrong
with my copy & paste from online to a new clb.

~ Larry

#20570 From: "mark.alexander23" <mark.alexander23@...>
Date: Mon Apr 19, 2010 4:03 pm
Subject: Re: ClipCode Syntax MENU - Run "Insert Date/Time"
mark.alexand...
Send Email Send Email
 
Hay that works thanks.
This also works
^!Keyboard ALT+D T
and
^$GetDate(mmmm dd, yyyy hh:nn:ss am/pm)$

Mark

--- In ntb-clips@yahoogroups.com, "paulmaser" <paul@...> wrote:
>
> It might be easier to use the ^$GetDate function, then you can format the
output to meet your needs without setting it in Options.
> Example from a clip:
> ^!Set %datetime%=^$GetDate(dddd, mmmm dd, yyyy: hh:mm)$
> ^!Info ^%datetime%
>
> Paul
>
> --- In ntb-clips@yahoogroups.com, "mark.alexander23" <mark.alexander23@>
wrote:
> >
> > I am trying to get "Insert Date/Time" to work
>

#20571 From: loro <tabbie@...>
Date: Mon Apr 19, 2010 4:07 pm
Subject: Re: [Clip] Clipboard boilerplate for cn_le
yastupidhoo
Send Email Send Email
 
Larry wrote:
>I made the fix and made sure the long line was correct before trying
>the clip for the first time. So will have to review and see what I
>may have done wrong with my copy & paste from online to a new clb.

The fix shouldn't matter in practice. Don't tell me it only works on
my machine now. :-(

Lotta

#20572 From: Larry Hamilton <lmh@...>
Date: Mon Apr 19, 2010 5:58 pm
Subject: Re: [Clip] Clipboard boilerplate for cn_le
lm_hamilton
Send Email Send Email
 
Found the problem!

I needed a space on the ^!AppendToFile line between the second " and the
first ^%NL%.

I added a debug and the clip was "working", except for the append part. It
was not until I changed to to paste to an OTL then a txt file that I
reviewed the help file and happened to notice the missing space. I cleaned
up that long line just a little too much. :-(

Sorry for the confusion! I seem to have plenty to spare. It is Monday after
all! ;-)

~ Larry

On Mon, Apr 19, 2010 at 12:07 PM, loro <tabbie@...> wrote:

> Larry wrote:
> >I made the fix and made sure the long line was correct before trying
> >the clip for the first time. So will have to review and see what I
> >may have done wrong with my copy & paste from online to a new clb.
>
> The fix shouldn't matter in practice. Don't tell me it only works on
> my machine now. :-(
>
> Lotta
>


[Non-text portions of this message have been removed]

Messages 20543 - 20572 of 23787   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help