Re: embedding/extending problem

2002-07-01 Thread Calin Fandango
- Original Message - From: "Sisyphus" <[EMAIL PROTECTED]> Date: Tue, 2 Jul 2002 10:12:46 +1000 To: <[EMAIL PROTECTED]> Subject: Re: embedding/extending problem > > - Original Message - > From: "Calin Fandango" <[EMAIL PROTECTED]> > > > > > xxx.obj : error LNK2001: unresolved e

Question about the old Win32::OBDC

2002-07-01 Thread David Jourard
Hi, A while ago I created an application with Win32::OBDC by roth. The client asked if I could use a File DSN instead of a System DSN on an NT server where the client is virtually hosted (not their server). Not being too familiar with NT boxes and after going over the docs and some searching

Re: embedding/extending problem

2002-07-01 Thread Sisyphus
- Original Message - From: "Calin Fandango" <[EMAIL PROTECTED]> > > xxx.obj : error LNK2001: unresolved external symbol _a > blib\arch\auto\XPEDoc\xxx.dll : fatal error LNK1120: 1 unresolved externals > > What should I do? I'm a little confused. Does that error message arise when you tr

[PMX:#] Win32::Perms Bug!

2002-07-01 Thread Dax T. Games
This may not be a bug but I certainly can't figure out how to do it after much effort, lost sleep and pulled out hair! There seems to be no way to create a directory tree and apply permissions to the directories in that tree so that permissions do not propogate to child directories and files.

RE: Why won't this work right?

2002-07-01 Thread Rubinow, Larry
steve silvers wrote: > I have a fill out form and in the text area I want to limit > the post to 200 > characters max. I'm using an Access database with a memo field. > > my $setnum = "200"; #Maximum number of characters allowed per entry. > if(length($text) > $setnum) { > my $chars = $t

Why won't this work right?

2002-07-01 Thread steve silvers
I have a fill out form and in the text area I want to limit the post to 200 characters max. I'm using an Access database with a memo field. my $setnum = "200"; #Maximum number of characters allowed per entry. if(length($text) > $setnum) { my $chars = $text =~ s/([a-z])/$1/gi; #count char

Re: Problem with =~

2002-07-01 Thread Thomas R Wyant_III
Dovalle Yankelovich <[EMAIL PROTECTED]> wrote: > I need to take some data from txt file and im looking for a > string within the text. > here part of the text: > tionDwsRx: Total allocated bytes (downstream) = 0, bits = 2, > I need the value after the first '=' What's wrong with my ($bytes,

Problem with =~

2002-07-01 Thread Dovalle Yankelovich
Hi I need to take some data from txt file and im looking for a string within the text. here part of the text: tionDwsRx: Total allocated bytes (downstream) = 0,  bits = 2, I need the value after the first '=' and im doing it this way if (($line =~ 'DwsRx: Total allocated bytes')and($'=

embedding/extending problem

2002-07-01 Thread Calin Fandango
Hello. I want to embed the perl interpreter into my C application and also I want to access functions from my C application from Perl scripts. But I can't because if I use say function a() from my app the linker complains about not being able to resolve the _a symbol (when linking the extensio

RE: Should I use perl?

2002-07-01 Thread Conor Lillis
I was also looking at writing a script to do the samer, however there is a great utility called HostMonitor that will perform 98% of what you want (www.ks-soft.net). Play around with it for a half day, see what you think. Conor -Original Message- From: Ken Swift [mailto:[EMAIL PROTECTED]

RE: Should I use perl?

2002-07-01 Thread Tillman, James
> > Is perl an OK language to do this application in or > > should I go down a different road? > > > This project is much too difficult to use perl, I suggest Visual Basic > instead. Now go check on the VB list and see what they say there. *Tsk* *Tsk* Carl, Carl, Carl... What have we told you

Re: OPEN PROCESS

2002-07-01 Thread Barrie Slaymaker
On Tue, Jul 02, 2002 at 12:08:18PM +0200, [EMAIL PROTECTED] wrote: > > Can you help me? Not sure why that gives you a bad fd, but you might try IPC::Run. Here are a few incantations to get you started: run [$rma, $file1], \undef, ">", "file.txt", "2>&1"; run [$rma, $file1], \unde

Re: Trouble with Win32::OLE

2002-07-01 Thread parvez
Hi, Please see the following code snippet and tell me if I am making a mistake: ===cut here $symbol = ($Sheet->Cells($row,1)->{'Value'} || "") if(defined $Sheet->Cells($row,1)->{'Value'}); ## "" is just a dummy value next if(Win32::OLE->LastError); $bid_price