Re: Microsoft Word Creation

2003-10-08 Thread sc00170
This method would be perfect unless i had problem with the encoding. I want to write greek documents but i cannot. Quoting Rob Dixon <[EMAIL PROTECTED]>: > <[EMAIL PROTECTED]> wrote: > > > > Quoting Rob Dixon <[EMAIL PROTECTED]>: > > > > > John wrote: > > > > > > > > Rob Dixon wrote: > > > > >

Re: Microsoft Word Creation

2003-10-08 Thread sc00170
Your solution is also amazing but where can i define the TrueType fonts for every single word? Or the size of them, color,... Quoting Rob Dixon <[EMAIL PROTECTED]>: > John wrote: > > > > Rob Dixon wrote: > > > > > > John wrote: > > > > > > > > I want to create a doc file that will contain my tex

Problems with opening a word doc on similar systems

2003-09-17 Thread sc00170
I am facing a very strange problem while i try opening a word document through my perl program. So far, i use the system() function. system(1, $winword_pathm $word_document); That works well on a win98 system, but it doesn't on another win98 system. Those machines have Office 97. What is the

Re: cannot open a doc under win9k properly

2003-09-15 Thread sc00170
system( 'start', " ", $winword_path, $doc_file); I used the code with the 1 and it also works, i am going to test the code on other w2k system that faces the problem. Quoting Jenda Krynicky <[EMAIL PROTECTED]>: > From: [EMAIL PROTECTED] > > Quoting Jenda Krynicky <[EMAIL PROTECTED]>: > > > >

Re: cannot open a doc under win9k properly

2003-09-15 Thread sc00170
Quoting Jenda Krynicky <[EMAIL PROTECTED]>: > From: [EMAIL PROTECTED] > > i use the system() to the job > > > > Especially, system("start"," ",$winword_path,$doc_file); > > > > It opens the doc file through the winword.exe but it raises some error > > messages concerging the prototypes of the wi

cannot open a doc under win9k properly

2003-09-15 Thread sc00170
i use the system() to the job Especially, system("start"," ",$winword_path,$doc_file); It opens the doc file through the winword.exe but it raises some error messages concerging the prototypes of the winword. Any ideas? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: system() problem in win98

2003-09-11 Thread sc00170
/WINWORD.EXE"; > > > > $result->{DOCUMENT_NAME}= the filename from the database. > > > > system ("start"," ",$filename_winword,"/n ", > "docs/$result->{DOCUMENT_NAME}"); > > > > Although it works great under Win

RE: system() problem in win98

2003-09-11 Thread sc00170
This problem reported to me after trying to execute my program. And it fail to open the doc file. The problem is that this man is far away from. I cannot see its system. Quoting Tim Johnson <[EMAIL PROTECTED]>: > If you don't have Win98, then I assume you know someone who does, because > other

RE: system() problem in win98

2003-09-11 Thread sc00170
I don't own a win98 system. How to be sure if the command works under such a system. Any reference of what can replace the start command because it stuck unless i use it in my syntax. Quoting Tim Johnson <[EMAIL PROTECTED]>: > > I think what he is saying is that the system() syntax is not chan

Re: system() problem in win98

2003-09-11 Thread sc00170
Do you say that the start doesn't work under win98? However, the DDE for the .DOC is the same with the win2k. Quoting "Beau E. Cox" <[EMAIL PROTECTED]>: > - Original Message - > From: <[EMAIL PROTECTED]> > To: "Perl Beginners" <[EMAIL PROTECTED]> > Sent: Wednesday, September 10, 2003

system() problem in win98

2003-09-11 Thread sc00170
i have the following function call $filename_winword="C:/Program Files/Microsoft Office/Office/WINWORD.EXE"; $result->{DOCUMENT_NAME}= the filename from the database. system ("start"," ",$filename_winword,"/n ", "docs/$result->{DOCUMENT_NAME}"); Although it works great under Win2000 system, wh

Re: Executing Perl from inside Perl, using Perl2EXE, Win32 and etc...

2003-09-09 Thread sc00170
I have a problem with my per2exe tool. where could i download and upgrade my current version? Quoting David Mamanakis <[EMAIL PROTECTED]>: > > I have an interesting situation where I am using Perl to develop > installation > scripts. So far, so good. > However, I have 4 total scripts, and I

running progs through another script

2003-09-07 Thread sc00170
Is there an function that not suspends the current prog running when executes another script? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cutting a string

2003-09-04 Thread sc00170
basename is more convenient i think. What do you say? Quoting [EMAIL PROTECTED]: > On Mon, 1 Sep 2003 [EMAIL PROTECTED] wrote: > > > What is the function of cutting a string from a point until the last > character? > > > > For example > > $string="C:/progra~1/directory1/directory2/file.txt"; >

problems with installing CPAN modules

2003-09-02 Thread sc00170
I am on win2k, active perl 5.6.1 system. I downloaded the ReadKey module, (all the packet of Term-Readkey-2-21) I gave perl MakeFile.pl and i recieved writing MakeFile then i set make, and it says that there is not target file -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

cutting a string

2003-09-01 Thread sc00170
What is the function of cutting a string from a point until the last character? For example $string="C:/progra~1/directory1/directory2/file.txt"; i want to find the last backslash (/) of the string and keep the sequence following it (file.txt) Is it simple? I tried with the split function but

Trying to open a word document on the shell

2003-08-22 Thread sc00170
I am trying to open a document as below #!/usr/local/bin/perl -w use Tk; my $mw = new MainWindow(); my $filename=$mw->getOpenFile(-filetypes=>[['WinWord','winword.exe']]); system("$filename john.doc"); But it says it cannot find the $filename path the $filename form is "C:/Program Files/

Tk mailing list

2003-08-21 Thread sc00170
I want to deal with the Tk. Is there any relevant mailing list to gain information? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Executable perl program help!!

2003-08-20 Thread sc00170
How can i generate such a file? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Installing Modules

2003-08-14 Thread sc00170
Hi all i am newbie in perl! How could i install any module i want? Thanks in advance! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]