Re: Application Profiling

2005-06-08 Thread Johan Lindstrom
At 02:02 2005-06-08, [EMAIL PROTECTED] wrote: I suspect IIS and the SQL Server as being the slow down but can't think of anyway to determine if they are or are not. http://use.perl.org/~jplindstrom/journal/19919 Try to enable DBI profiling: http://search.cpan.org/~timb/DBI-1.48/lib/DBI/Profile

Re: Win32::AdminMisc::GetGroups returns nothing

2005-06-08 Thread Sisyphus
- Original Message - From: "Christopher Rosen" <[EMAIL PROTECTED]> To: ; Sent: Wednesday, June 08, 2005 12:41 AM Subject: Win32::AdminMisc::GetGroups returns nothing > Trying to get all groups from a particular machine, but this returns > nothing and will not even hit the 'else' portion

Re: Help with Perl and Image-magick

2005-06-08 Thread Sisyphus
- Original Message - From: "Charles Maier" <[EMAIL PROTECTED]> To: "Perl-Win32-Users Mailing List" Sent: Wednesday, June 08, 2005 6:26 AM Subject: Help with Perl and Image-magick > I recently updated to the new Perl 5.8 and I got everything running > except Image-magick. I did update I

DBI::ADO problem... execute() doesn't return all valid rows from MSSQL

2005-06-08 Thread Doug Poland
Hello, I am having a problem getting DBI::ADO to work correctly.  Let me start by admitting I am not a perl expert, but have the camel book here with me and have googled extensively.  Here's my problem: I am running ActiveState perl 5.8.6 on WinXP and connecting to MSSQL 2K.  I need to run

RE: Application Profiling

2005-06-08 Thread Chris
> I'm in the final stages of building a web browser based application and > suddenly there are some significant slow-downs when it runs. > Any ideas or pointers? > Rod In addition to profiling, make sure the HTML being produced is not too large or complicated for the browser or bandwidth limit

Mailer Daemon functionality.

2005-06-08 Thread Shain Edge
I was wondering if there were a way to set perl up so that if a message was sent to a mail box with a certain topic, it would run a script and resend a mail to the sender based on the message? Shain RPG-Edge Forum: http://rpg-edge.ketnar.org/vbb Up and comming new singer- Kendall Gaveck: http://l

Re: Application Profiling

2005-06-08 Thread Octavian Rasnita
Hi, I would also like to create a browser like application but I don't know where I can find some examples. I don't want to create a full browser, but just a limited browser window in another application. Can anyone help with some examples, or point me to some web pages where I can learn to do th

RE: :ADO problem... execute() doesn't return all valid rows fromMSSQL

2005-06-08 Thread Steven Manross
What type of column is nodeName? char or varchar? And also just make sure there's no spaces after the end of the server name in the DB... Select '>'+nodename+'<' from smarts_nodes In something like query analyzer if you haven't already. Steven -Original Message- From: [EMAIL PROTECTED

RE: :ADO problem... execute() doesn't return all valid rows fromMSSQL

2005-06-08 Thread Chris
> Even though the data are in the tables, DBI does not consistently > return the rows. I've had similar problems with DBI. Most of the time, if the first column of any particular row is NULL, DBI throws a fit. I always select the table key first or include "WHERE ([first_field] IS NOT NULL)" in th

RE: :ADO problem... execute() doesn't return all valid rowsfromMSSQL

2005-06-08 Thread Chris Cappelletti
The solution (well msft sql server anyway and assuming that is an unfixable dbi issue) is using the isnull function. Select isNull(FieldNameForNullField, 'Value you want it to be if it's null') >From randomtable -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

RE: Application Profiling

2005-06-08 Thread Peter Guzis
You could embed an Internet Explorer control in Win32::GUI using Win32::GUI::AxWindow. I wrote my kids a simple shell in Perl using just this method. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Octavian Rasnita Sent: Wednesday, June 08, 2005 11:28 AM T

Re: User properties?

2005-06-08 Thread Lyle Kopnicky
Solli Moreira Honorio wrote: > Hi folks, > > I need to read/write some properties of user accounts, specifically: > > * profile name > * initial program command line > * initial program working directory > > I have found that I can get/set the profile name using the Win32API::Net > module. But