Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vbkal

  1. vbkal

    group of a committed file

    hello, I have a problem with our CVS system. If someone commits a file with WinCVS, they get this : -rwxrwx--- USR USR file1. Every hour a script changes the group to : -rwxrwx--- USR GROUP file1. What I don't understand : if a person commits file1, then each time the files group is set...
  2. vbkal

    Wide character in syswrite at /usr/share/perl/5.8/Net/Cmd.pm line 430

    Hello, Still looking for a fix to my problem. I've now narrowed the problem down to this line. Previous thougth of were it went wrong, was not correct . my $tree = HTML::TreeBuilder->new_from_content($content); my $formatter = HTML::FormatText->new(); my $textcontent =...
  3. vbkal

    Wide character in syswrite at /usr/share/perl/5.8/Net/Cmd.pm line 430

    Sorry if this is a "stupid" question, but is it right if I tried : I've put use open IN => ':raw'; at the BEGINNING of my script. (where all the "Use ... " are located) No change I've also tried putting : use open IN => ':locale'; and binmode STDOUT, ":utf8" ; binmode STDIN, ":utf8"; Both...
  4. vbkal

    Wide character in syswrite at /usr/share/perl/5.8/Net/Cmd.pm line 430

    Hello, Does anyone know what this message means? I've tried to find where it happens in my code (code processes html files) and I think the error happens on the line with the following information : $minutes = `cat $abs_path/$link`; It sometimes processes some html pages without troubles and...
  5. vbkal

    user control and shift down

    Hello, I've made a user control with a matrix of listviews, say 7 by 20 where 4 rows are visible per time. Now, I want to drag items from a datagrid on my control. But (and this is where I go in the mist) I want to scroll down through my matrix if I scroll down the bottom. But I don't find...
  6. vbkal

    show other value in datagrid than the value in the dataset

    I have a datagrid where one column contains a distance between two places. If the value in a row == null then I want to SHOW that value retrieved from another table. My question : I only want to SHOW this value in the column and not set in the dataset (so it doesn't get updated) Is there a...
  7. vbkal

    Datagrid : move up/down rows in code

    The last option was what I tried, but I also use a TableStyle. The AllowSorting property of the TableStyle apparently overwrites the AllowSorting property of the datagrid ! so I have to set both to false to not allow sorting. Problem solved.
  8. vbkal

    Datagrid : move up/down rows in code

    I must have overlooked something, because the the DataView with DefaultView.Sort="stopOrder asc" works fine for sorting in code. But now I am faced with a new problem. How do I set the manual sorting to false, allowing code to sort, but not the users of the form? kathleen
  9. vbkal

    Datagrid : move up/down rows in code

    Hello, I have a window application with a datagrid on it. (Data bound from a dataset). Each row has an order number (stoporder). Now I want the user to be able to move the rows up and down with an up and down button(and automatically change the number). I can do this ok, if I manually click...
  10. vbkal

    new to perl : pass value from form to perl script

    Hi Sim, Thank you for your answer. You weren't way off track. That's what I wanted to know : you do need a web server on your pc before you can achieve this kind of interaction between a html page and a perl script. This is my goal : let's say a network of 5 people. Each have the same...
  11. vbkal

    new to perl : pass value from form to perl script

    Paul, This still doesn't work. It prints "The hidden text is : ". My parameter doesn't get passed to the perl script. ??? vbkal
  12. vbkal

    new to perl : pass value from form to perl script

    Hello, I don't know if I am posting this question to the right forum, excuse me if I am : I have the following 1/ html file <html> <body> <form method="post" action="test.pl"> <input type="hidden" name="hiddenfield" value="abc"> <input type="submit" value="TEST"> </form> </body> </html> 2/...

Part and Inventory Search

Back
Top