in reply to Re^4: problem with par as other user
in thread problem with par as other user
displays the terminal aswell. I just unzipped your package and ran this. Else I love this solution! :)#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = MainWindow->new; #centers window CenterWindow($mw, 300, 200); MainLoop; sub CenterWindow { my($window, $width, $height) = @_; #$window->idletasks; $width = $window->reqwidth unless $width; $height = $window->reqheight unless $height; my $x = int(($window->screenwidth / 2) - ($width / 2)); my $y = int(($window->screenheight / 2) - ($height / 2)); $window->geometry("=${width}x${height}+${x}+${y}"); }
Ideas on this? :)...Temp/ccARbaaa.o(.text+0x44):start.c: undefined reference to `_imp__ +win32_malloc' ...Temp/ccARbaaa.o(.text+0x35a):start.c: undefined reference to `_imp_ +_win32_malloc' ...Temp/ccARbaaa.o(.text+0x435):start.c: undefined reference to `_imp_ +_win32_malloc' ...Temp/ccARbaaa.o(.text+0x4bf):start.c: undefined reference to `_imp_ +_RunPerl' ...Temp/ccARbaaa.o(.text+0x4d5):start.c: undefined reference to `imp(w +char_t, int, int, int, int, int, int, int, int, int, int, int, int, i +nt, int, int, int, int, int, int, int, int, int, int, int, int, int, +int, int, int, int, int, int, int, float, long double,...)(...)' collect2: ld returned 1 exit status Execution terminated
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: problem with par as other user
by vkon (Curate) on Jun 29, 2006 at 22:16 UTC | |
by Ace128 (Hermit) on Jun 29, 2006 at 23:38 UTC | |
by vkon (Curate) on Jun 30, 2006 at 05:56 UTC | |
by Ace128 (Hermit) on Jun 30, 2006 at 12:00 UTC | |
by vkon (Curate) on Jun 30, 2006 at 12:36 UTC | |
| |
|
Re^6: problem with par as other user
by vkon (Curate) on Jun 29, 2006 at 22:14 UTC | |
by Ace128 (Hermit) on Jun 29, 2006 at 23:34 UTC | |
by vkon (Curate) on Jun 30, 2006 at 05:35 UTC | |
by Ace128 (Hermit) on Jun 29, 2006 at 23:55 UTC | |
by vkon (Curate) on Jun 30, 2006 at 05:53 UTC | |
by Ace128 (Hermit) on Jun 30, 2006 at 11:56 UTC | |
by vkon (Curate) on Jun 30, 2006 at 12:29 UTC | |
|