Re: looking for a better way...

2003-08-14 Thread Pinku Bhatnagar
Hey Jerry, I have a one quick solution for you. str = "\"q4171\",\"(08/11/03 23:30:48)\",\"\""; @array = split(/,/,$str); foreach (@array) { s/\"//g ; } HTH Pinku Jerry Preston wrote: Hi!, I am trying to breakdown this line: "q4171","(08/11/03 23:30:48)","" with ( @data ) = split /[,|\"]/

Re: looking for a better way...

2003-08-14 Thread Pinku Bhatnagar
hi Jerry, On second thought, I have a better solution for you. $str = "\"q4171\",\"(08/11/03 23:30:48)\",\"\""; @array = $str =~ /"([^"]*)"/g; HTH Pinku Jerry Preston wrote: Hi!, I am trying to breakdown this line: "q4171","(08/11/03 23:30:48)","" with ( @data ) = split /[,|\"]/;#" but I ge

Re: input box

2003-08-14 Thread Pinku Bhatnagar
hi, There is a text entry widget in perk/tk. It is exactly similar to the input box of VB. While creating the entry widget you associate a scalar variable to it. You can then use this variable to get/set the text or value in the entry widget. HTH Pinku Bhatnagar Dan Muey wrote: Hi Howdy

Re: input box

2003-08-14 Thread Pinku Bhatnagar
hi, There is a text entry widget in perk/tk. It is exactly similar to the input box of VB. While creating the entry widget you associate a scalar variable to it. You can then use this variable to get/set the text or value in the entry widget. HTH Pinku Bhatnagar Dan Muey wrote: Hi Howdy

Re: setting the screen resolution

2003-08-12 Thread Pinku Bhatnagar
Hi Sachin, I think you cannot set the screen resolution thru perl/tk. Pinku Sachin Hegde wrote: Hi All, This is actually a Tk querry.Can we Set the screen resolution through Perl/Tk ? sincerely, Sachin _ Attention NRIs! Send mone

Re: input box

2003-08-10 Thread Pinku Bhatnagar
hi, There is a text entry widget in perk/tk. It is exactly similar to the input box of VB. While creating the entry widget you associate a scalar variable to it. You can then use this variable to get/set the text or value in the entry widget. HTH Pinku Bhatnagar Dan Muey wrote: Hi Howdy

Re:Input Box

2003-08-06 Thread Pinku Bhatnagar
hi, There is a text entry widget in perk/tk. It is exactly similar to the input box of VB. While creating the entry widget you associate a scalar variable to it. You can then use this variable to get/set the text or value in the entry widget. HTH Pinku Bhatnagar -- To unsubscribe, e-mail