|
Hi
I have a folder called OTRS Ticketing system which is developed using Perl. I need to open the perl files in design mode so that i can make any changes in design layout . I can use toolbox controls like dropdown, textbox, Datagrid etc. Is there any Perl IDE for opening & changing design layout.
I downloaded Editplus, Komodo but all are one we can view code and make changes in code. But not able to see as design view.
How to do this. Any suggestion for Perl development tool which we can use for opening perl files in design mode.
Anybody knows, please reply.
Thanks in advance.
|
|
|
|
|
since a month ago, i was trying to achieve my thesis and search any coding. and i found this code in http://www.jimstoik13.comoj.com/?p=80[^]
but when i have run the program, the codes have some error message.
cause zero divition.
how to convert this code from OOP to ordinary function?couse because I have not been able to read and convert OOP codes.
thanks
|
|
|
|
|
please help me, or please explain that code... 
|
|
|
|
|
edrianhadinatazz wrote: please explain that code
You should email the author of the code requesting an explanation.
modified 1-Aug-19 21:02pm.
|
|
|
|
|
Aren't we impatient...
"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)
|
|
|
|
|
I have run code, there is an error .. although I have change the value of $MatrixPointX retrieve values from a database ... 
|
|
|
|
|
Hello all,
I'd like to know how to be able to click the tect on the checkbox to change it's value...
Like in the MFC checkbox in which you can change the value of the same checkbox via clicking on the square or the text.
I've tried to find it on the Internet but after tons of checkbox tutorials I've not seen it...
Thank you in advance!
|
|
|
|
|
The element you need for that is <label>[^]
|
|
|
|
|
Thank you very much for your help!
|
|
|
|
|
HTH[^]
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.
|
|
|
|
|
Thank you Luc...
I've searched for that before, but it is a pity not to speak english as the first language... I've tried a big set of strings without any good result...
Anyway, I've got help here as always!
Regards!
|
|
|
|
|
I have a two column page that am desperately trying avoid using an IFRAME as the target. I have spent the last two days unsuccessfully.
Is there anyone who has this problem solved or knows where or how to solve it.
Any help is greatly appreciated.
|
|
|
|
|
So what's the problem? Indeed, what is your question?
I just hope the lithium polymer cells in my Code Project Mind Reading Unit still have some charge left in them
Do I understand you to be saying that you have a 2 column layout using divs, and you'd like to perform some ajax work and would like to display the results in one of these two columns - but would like to avoid the use of an iframe as the target of the results of the ajax call?
As it stands, what it is that you would like to know is entirely unclear.
|
|
|
|
|
Am not getting your question clearly but hope this will help you...if not just say it..
you would like to create two columns with different content sources lets say an external page[.php,.html .. e.t.c].
For my web apps this is what i do:-i will use an example:
==>supposing this is my index.php file ===
<div1> [Shows my page header] </div>
<div2> [Shows my page content] </div>
<div3> [Shows my page footer content] </div>
Content posting --
--create your header.php file
--create your footer.php file
NB: save all the includes pages in one directory like /inc/...>
to show the header content this is what i will do: using php
===and my content will be displayed in here
do the same for other pages
==HOPE THIS HELPS ==
|
|
|
|
|
Curious, what are useful things you've used Perl for and why did you choose Perl over any other language?
|
|
|
|
|
I use it for things like build scripts[^]. Basically, Perl is a glue script that runs various other pieces of the system.
Albert Holguin wrote: why did you choose Perl over any other language
It is widely deployed, easy to use and samples are all over the internet.
|
|
|
|
|
I'm currently using it for automatic nightly builds, but I want to see what else people are using it for... thanks for the feedback though!
...Oh, I'm also using it to help our production guys make software licenses easily with very few options (since they're not very tech savvy)...
|
|
|
|
|
I use it for quick and dirty searches on "many" large text files. I use it when I need the power of RegEx and need to do it quickly. Overall, text file manipulation is quite easy and quite powerful. Some of our in-house software runs on Perl scripts as well.
Important note: If I am going to need to go a few steps more than I will write it in C#...usually.
|
|
|
|
|
does it do searches fast? ...or do you use it because its easy to code searches? I've actually thought about making some perl scripts to help manage my music libary, but its a ~40GB library, so I'm worried about efficiency with A LOT of files.
|
|
|
|
|
Albert Holguin wrote: does it do searches fast?
Extremely fast...at least on my system at work.
Albert Holguin wrote: or do you use it because its easy to code searches?
Once you get the basics down for Perl, writing a general search script is easy to do. Code reuse makes it even faster.
|
|
|
|
|
|
Some years ago now but I needed to access machine files over a large private network from multiple platforms, Windows, SUN systems, straight UNIX, IRMX and others. I used pearl to examine the data, formatted differently on each of these platforms and produce an HTML output that was available as a sort of web site, not a proper one with servers and internet, but enabled users all over the UK saw it like a web site.
A small C++ app kicked the process into life every night and this system accessed several hundred machines, also all over the UK, and updated the HTML pages.
Pearl is fast and, albeit a bit write only, very good at handling this sort of heavy text manipulation process.
|
|
|
|
|
*Perl* .... thanks for your feedback, but why a C++ app and not just a task/cronjob or what not?
|
|
|
|
|
I use perl for the following
1. One shots to munge data
2. Producing runtime specific data that is tailored to the environment.
3. Code generation.
The reason is that the alternative languages would require more infrastructure work to get to the point where I was actually achieving the intended goal.
|
|
|
|
|