... If your desired final document format is now OpenOffice .odt, I wouldn't bother with VB at all, but -- the way I see it -- have a copy of the template file...
20819
Axel Berger
absalom_nemini
Jul 1, 2010 8:50 pm
... Wrong list, so I'll answer here. ... See? GetShort returns a full path. GetName can access that and retrieve the name. GetName returns a naked name alone....
20820
ebbtidalflats
Jul 2, 2010 2:56 pm
Ahhh, yes I do see. I had forgotten to consider this from the DOS point of view. Thanks for clearing this up. Eb...
20821
Adrien Verlee
verlee2001
Jul 2, 2010 5:54 pm
Once I have downloaded "HTML-Spe" a clip with numeric entities for special characters. It was and is very useful. Similar on this I want to make one for the...
20822
Adrien Verlee
verlee2001
Jul 2, 2010 6:03 pm
... BTW, while searching I stumbeld over: http://www.mobileread.com/forums/showthread.php?t=50724 Can't say about that clip anything. Not played with. And:...
20823
John Shotsky
shotsky1
Jul 2, 2010 6:39 pm
Download and use Babelmap. Every character map for every language you ever wanted, and more. I use it all the time. ...
20824
Adrien Verlee
verlee2001
Jul 2, 2010 7:24 pm
... Incredibly good! Exactly what I need. Many thanks. -- Adrien...
20825
Art Kocsis
artkns
Jul 2, 2010 9:11 pm
Adrien, I think what you are asking is how to insert the actual glyph into a document given that you have the code-point (the numeric value), for the symbol. A...
20826
Don
dpasseng
Jul 2, 2010 10:06 pm
I continue to have troubles after getting a new computer. When I send files to other people they get long run on lines with no return characters. What should...
20827
John Shotsky
shotsky1
Jul 2, 2010 10:15 pm
If you add to your clips to replace \R with \r\n, that should resolve the problem. Or, if you copy the text and paste it into a new document, it will 'take'...
20828
Adrien Verlee
verlee2001
Jul 3, 2010 3:02 am
... I had completely forgotten this. But would not have thought to do so. Thanks for the thorough information, but now I've found BabelMap, I stand by that. --...
20829
loro
yastupidhoo
Jul 3, 2010 11:27 am
I haven't read all of this thread, but is Notetab really capable of displaying Greek characters? What's the trick? ... It's great. You may also like BabelPad,...
20830
Brother Gabriel-Marie
brother.gabriel
Jul 5, 2010 9:20 pm
Hello, y'all! In regards to building texts with special characters, I have a little program I wrote called "Frenchie" which can "sendkeys" to any program. You...
20831
John Shotsky
shotsky1
Jul 5, 2010 11:49 pm
Is there a way to set text size in wizards? I have a wizard that permits the user to select any 'standard39; accented letters to insert into their text, but the...
20832
hsavage
hrs62930
Jul 7, 2010 12:25 am
... John, I've found no way to increase font size in wizards but, if you separate each choice and indent a bit they are a little easier to read. Check out...
20833
Eb
ebbtidalflats
Jul 9, 2010 11:45 pm
John, I use the solution offered by the earlier response. However, if that isn't satisfactory, you COULD just increase the font size (Desktop...
20834
John Shotsky
shotsky1
Jul 11, 2010 5:51 pm
I would like a certain clip to run whenever one of my users opens NoteTab with my clip library as the default library. I have found that it doesn't run in that...
20835
loro
yastupidhoo
Jul 11, 2010 6:27 pm
... Let's see if I understand you right. Are you saying they open NTP with the library with the onopen clip loaded? It *should* run in that situation. Lotta...
20836
Axel Berger
absalom_nemini
Jul 11, 2010 6:49 pm
... Funny that. I often call up NoteTab from a batch and let it run a given clip on a given file. So perhaps you ought to write a one-liner batch and make your...
20837
hsavage
hrs62930
Jul 11, 2010 8:01 pm
... NoteTab with my clip library as ... situation - it waits for the user to ... users don't use NoteTab for anything ... initializing code run. (I put...
20838
Alec Burgess
alecb3ca
Jul 11, 2010 10:22 pm
John - you didn't say if your users are using Notetab Pro or Notetab Light. Just wondering if using Light might have some of the functionality in On Open or...
20839
John Shotsky
shotsky1
Jul 11, 2010 11:45 pm
Well, I was wrong. I almost always have my clip open for editing, and in THAT case, it won't run the OnStart clip. If I close my clip library first, it runs....
20840
Julie
readingril
Jul 15, 2010 6:44 pm
Not a clip genius here, but I have created a simple clip where I can add input in a document starting at a certain point for a date, but it will continue ad...
20841
diodeom
Jul 15, 2010 7:17 pm
... After your ^!Jump Line_End you could add: ^!If ^%date%<10 ^!Set %date%=0^%date% ^!If ^%date%>30 End...
20842
Don Daugherty
dondaugherty...
Jul 15, 2010 7:39 pm
... I guess you want to the loop when 30 has been used. Is that correct? ... ^!Set %date%=^$StrCopyRight("0^%Date%";2)$ ^!find<...> s ^!iferror goto endloop ...
20843
Art Kocsis
artkns
Jul 15, 2010 9:07 pm
I abhor unnecessary tests so in a case like this, I prepend "00" to all values (in case %date% is null), and extract the last two characters. For example,...
20844
Julie
readingril
Jul 15, 2010 11:21 pm
Hi Art, While I think I understand what you're suggesting how do I implement this when I have a user input field such as ^!Set %cursor%=^$GetRow$:^$GetCol$;...
20845
Robin Chapple
d9790
Jul 16, 2010 12:33 pm
I have a list of names presented in the format: John SMITH (1906-1930) Is is possible to remove the other text and retain the word in uppercase? Many thanks, ...
20846
Axel Berger
absalom_nemini
Jul 16, 2010 1:32 pm
... ^!Replace "^.* (.*?) \(.*\)$" >> "$1" WRASTI This will not work with double surnames containing a space. Axel...
20847
Alex Plantema
aplantema
Jul 16, 2010 1:38 pm
... This seems to work: ^!Replace "^.* ([A-Z]{2}[A-Z -]*) \(.*$" >> "$1" WRSA It starts with the first occurrence of two uppercase letters and ends at the...