Re: insert in perl tk

2012-08-24 Thread Irfan Sayed
beginners@perl.org Sent: Friday, August 24, 2012 11:13 AM Subject: Re: insert in perl tk On Aug 23, 2012, at 9:35 PM, Irfan Sayed wrote: thanks. this will help to print the contents of array on separate line. however, if at all we need to call function then what is the syntax, how we can

Re: insert in perl tk

2012-08-24 Thread Shekar
in the text box please suggest regards irfan From: Jim Gibson jimsgib...@gmail.com To: Perl Beginners beginners@perl.org Sent: Friday, August 24, 2012 11:13 AM Subject: Re: insert in perl tk On Aug 23, 2012, at 9:35 PM, Irfan Sayed wrote: thanks

Re: insert in perl tk

2012-08-24 Thread Irfan Sayed
thanks. it worked! regards irfan From: Shekar c.shekar1...@gmail.com To: Irfan Sayed irfan_sayed2...@yahoo.com Cc: Jim Gibson jimsgib...@gmail.com; Perl Beginners beginners@perl.org Sent: Friday, August 24, 2012 12:23 PM Subject: Re: insert in perl tk Try this. $t-insert(end, gettime

Re: insert in perl tk

2012-08-24 Thread Shlomi Fish
@perl.org Sent: Friday, August 24, 2012 11:13 AM Subject: Re: insert in perl tk On Aug 23, 2012, at 9:35 PM, Irfan Sayed wrote: thanks. this will help to print the contents of array on separate line. however, if at all we need to call function then what is the syntax, how we can

Re: insert in perl tk

2012-08-24 Thread Shekar
Subject: Re: insert in perl tk On Aug 23, 2012, at 9:35 PM, Irfan Sayed wrote: thanks. this will help to print the contents of array on separate line. however, if at all we need to call function then what is the syntax, how we can call that ? What function do you want

insert in perl tk

2012-08-23 Thread Irfan Sayed
hi, can we call function in the insert method of perl tk ? i have code like this:  $t-insert(end, \abc); so when this line gets executed, it should first call function abc please suggest regards irfan

Re: insert in perl tk

2012-08-23 Thread Irfan Sayed
can someone please suggest ? regards irfan From: Irfan Sayed irfan_sayed2...@yahoo.com To: beginners@perl.org beginners@perl.org Sent: Thursday, August 23, 2012 4:15 PM Subject: insert in perl tk hi, can we call function in the insert method of perl tk

Re: insert in perl tk

2012-08-23 Thread John SJ Anderson
On Thursday, August 23, 2012 at 10:15 AM, Irfan Sayed wrote: can someone please suggest ? Explain what you're actually trying to achieve, instead of asking how to do what you think will let you accomplish what you're trying to achieve. Yes, if you write the insert() method properly, you

Re: insert in perl tk

2012-08-23 Thread Irfan Sayed
, 2012 10:54 PM Subject: Re: insert in perl tk On Thursday, August 23, 2012 at 10:15 AM, Irfan Sayed wrote: can someone please suggest ? Explain what you're actually trying to achieve, instead of asking how to do what you think will let you accomplish what you're trying to achieve. Yes, if you

Re: insert in perl tk

2012-08-23 Thread Jim Gibson
On Aug 23, 2012, at 10:51 AM, Irfan Sayed wrote: it was quite rude. anyway What was quite rude? lets say if i have to display the contents of array using insert method. if i just type : $t-insert(end, @arr1); then surely , it will print the contents of array but on the same line I

Re: insert in perl tk

2012-08-23 Thread Shawn H Corey
On Thu, 23 Aug 2012 10:51:09 -0700 (PDT) Irfan Sayed irfan_sayed2...@yahoo.com wrote: i need to print the contents of array on separate line , so , i thought , i should write one function where i will print the contents of array on each line Do you mean you want each item from an array on

Re: insert in perl tk

2012-08-23 Thread Irfan Sayed
@perl.org Cc: Irfan Sayed irfan_sayed2...@yahoo.com Sent: Thursday, August 23, 2012 11:40 PM Subject: Re: insert in perl tk On Thu, 23 Aug 2012 10:51:09 -0700 (PDT) Irfan Sayed irfan_sayed2...@yahoo.com wrote: i need to print the contents of array on separate line , so , i thought , i should write

Re: insert in perl tk

2012-08-23 Thread Jim Gibson
On Aug 23, 2012, at 9:35 PM, Irfan Sayed wrote: thanks. this will help to print the contents of array on separate line. however, if at all we need to call function then what is the syntax, how we can call that ? What function do you want to call? When do you want to call it? What does the