Hello Friedger, >Have a look at >http://link.altova.com/download_authentic.html > >altova seems to be a good company. But I haven't really used the >authentic-tool. > >Friedger > >----------- >www.friedger.de
Yes this seems very good - did look at it before (when I was looking at databases) - I remember the Dolphin ... must be good . . . The reason I am looking at XLM (and XLS) is because it is a way of storing different types of data and this is important to ASQ ASQ http://en.wikibooks.org/wiki/ASQ - If you have any thoughts on the programming side please add - as there is a section for that and if Joyces company is paying for an article on Curl? . . . then as the resident expert you should go for it Friedger . . . :-) . . . and why is this important . . . well I needed to recommend a set-up builder (Like Inno - a great program too) which creates an install routine for any program a very good and simple freeware one (that is hardly known) is: Little Setup Builder http://www.ammasw.com/ but I could not find it - could not remember it (came across it by accident eventually . . .) we are losing code, programs and even whole languages LOL Progress . . . ? In another direction . . . I have been working on a simple program that is constructed in a way that MAY be of interest to the non programmers amongst us - will load it up to the files area The tool I am using is http://www.autoitscript.com/autoit3/index.php This is the script below - so easy I learnt it easily enough in less than a day to create this simple script =============== ; test on Win XP only ; Author Lob: ; MsgBox(0, "Welcome to Tmxxine News", "and here is the news . . ." & @CRLF & "This was created with Autoit" & @CRLF & "When you click on OK you will get options in sequence to visit various web sites . . ." & @CRLF & "These options have only been tested to work on Windows XP") $ans = MsgBox(3, "Tmxxine", "Go to Tmxxine Wiki?") If $ans = 6 Then Run("C:\Program Files\Internet Explorer\iexplore.exe http://en.wikibooks.org/wiki/Tmxxine") EndIf $ans = MsgBox(3, "Tmxxine", "Go to Freeflow Wiki?") If $ans = 6 Then Run("C:\Program Files\Internet Explorer\iexplore.exe http://en.wikibooks.org/wiki/freeflow") EndIf $ans = MsgBox(3, "Tmxxine", "Go to Autoit Website?") If $ans = 6 Then Run("C:\Program Files\Internet Explorer\iexplore.exe http://www.autoitscript.com/autoit3/index.php") EndIf ================ which I compiled to this file http://groups.yahoo.com/group/HolyGeek/files/tmx1.exe be interested if it works on your machine (if you are using windows and IE it will work - or should) and OK theoretically I could have created a smaller file in assembler or C but autoit is simple and was easier . . . (still trying to make some sense of assembler . . . and I think 'C' is too hard except for the commited - or those who should be - only joking) - and a tip for Bonsai trees - as far as I know they ARE NOT designed (most of them - tropical ones are different) to be kept indoors. The Japanese keep them outside - bringing them in on special occasions or for guests . . . So putting it out on a windowsill may be the kindness it requires . . . . . . worth investigating further . . . Lobsai ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/_bWolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/HolyGeek/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
