Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Motif GUI example. UNIX executable ready. Post 303042111 by Sennenmut on Sunday 15th of December 2019 08:40:52 AM
Old 12-15-2019
hey come on ,
please run the gui example on your bsd machine.
it's a example for me that the programmed little gui works on other machines.
maybe 64bit.
i have made it with a 32bit freebsd.

a simple feedback would be glad. its easy.
1. download toplevel+label+font.gz
2. in terminal type : gunzip toplevel+label+font.gz
3. double klick the executable
4. if permissions are not right type in terminal as root user : chmod +x toplevel+label+font




WBR
SM

Last edited by Sennenmut; 12-15-2019 at 02:36 PM.. Reason: additional description
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

2. Solaris

Is Unix/Solaris 10 ready for professional Desktop need?

There is little or no gaming available without the use of emulation or virtualization. There is no support for Xen in Solaris 10, you will have to Nevada to get that which also means no XP apps unless you can get them to run in Wine. It is unlikely that windows only hardware will be supported. (1 Reply)
Discussion started by: ezsurf
1 Replies

3. UNIX for Dummies Questions & Answers

Cannot run UNIX executable !

I have installed the Darwin Calendar Server on my Mac and got it working. To start the server I open a Finder window on my mac and click the UNIX executable called RUN. In order to start the server automatically on bootup I used LINGON to add a startup Daemon to call "RUN -d". When I reboot... (6 Replies)
Discussion started by: thylacine
6 Replies

4. Shell Programming and Scripting

unix executable file

Hi - How can I find out under sh whitch file is an unix executable file? Need it for an software inventory. Thanks in advance. Regards - Lazybaer (6 Replies)
Discussion started by: lazybaer
6 Replies

5. Shell Programming and Scripting

Create GUI or Executable For Script

Hi all. I've got a unix script at work that I just got done with. Now they want me to write some simple way to run it on Windows. Right now we log into a Solaris server using Hummingbird Exceed to gain a terminal. Im thinking that there really isn't any good way to get Windows and the server... (5 Replies)
Discussion started by: Grizzly
5 Replies

6. OS X (Apple)

Plist to Unix Executable

I'm using an old conversion method for converting a plist into an XML file, but that's not what I'm needing just via terminal now. What I'm looking for is an answer to convert a plist file into an executable. I'd like to import it into Casper and have the JSS push it out onto an image. In this... (6 Replies)
Discussion started by: unimachead
6 Replies

7. Solaris

Motif 2.1 migration from Motif 1.2

An application was getting built using Motif 1.2 that used come along Solaris 6 OS for compiling and linking. Application is run using Motif 2.1 on Solaris 10 and it is working fine. Application compilation and linking is working fine on Solaris 10 with Motif 2.1.0 but running the application... (0 Replies)
Discussion started by: shafi2all
0 Replies

8. UNIX for Beginners Questions & Answers

Motif gui programming !

MOTIF GUI PROGRAMMING ! Hi there. I am a MOTIF GUI Programmer in C language. After a longer break i have problems with the GCC compiling. my MOTIF file is named winstack.c I have the follow code gcc -o newprogram winstack.c -lXm -lXt -lX11 The compilation runs good. But no executable LINUX... (10 Replies)
Discussion started by: Sennenmut
10 Replies

9. UNIX for Beginners Questions & Answers

I'll be a professional MOTIF GUI programmer.

I'll be a professional MOTIF GUI programmer. And nothing will stop me. Nothing. :) (5 Replies)
Discussion started by: Sennenmut
5 Replies
LabFrame(3pm)						User Contributed Perl Documentation					     LabFrame(3pm)

NAME
Tk::LabFrame - labeled frame. SYNOPSIS
use Tk::LabFrame; $f = $parent->LabFrame(?-label=>text, -labelside=>where, ...?); DESCRIPTION
LabFrame is exactly like Frame and additionaly allows to add a label to the frame. WIDGET-OPTIONS LabFrame supports the same options as the Frame widget. Additional options of LabFrame are: -font => font Specifies the label's font -foreground => color Specifies the label's foreground color -label => text The text of the label to be placed with the Frame. -labelside => where Where can be one of left, right, top, bottom or acrosstop. The first four work as might be expected and place the label to the left, right, above or below the frame respectively. The acrosstop creates a grooved frame around the central frame and puts the label near the northwest corner such that it appears to "overwrite" the groove. -labelvariable => scalar_ref Specifies a reference to a variable and used as an alternative to -label. If the value of the variable changes, then the widget will be updated automatically to reflect the change. Used like -textvariable. ADVERTISED SUBWIDGETS
See "Subwidget" in Tk::mega how to use advertised widgets. border Frame used to display the border frame Frame used to create new LabFrame children. label Label used for displaying text EXAMPLE
Run the following test program to see this in action: use strict; use Tk; require Tk::LabFrame; require Tk::LabEntry; my $test = 'Test this'; my $mw = Tk::MainWindow->new; my $f = $mw->LabFrame(-label => "This is a label", -labelside => "acrosstop"); $f->LabEntry(-label => "Testing", -textvariable => $test)->pack; $f->pack; Tk::MainLoop; BUGS
Perhaps LabFrame should be subsumed within the generic pTk labeled widget mechanism. AUTHOR
Rajappa Iyer rsi@earthling.net This code is derived from LabFrame.tcl and LabWidg.tcl in the Tix4.0 distribution by Ioi Lam. The code may be redistributed under the same terms as Perl. perl v5.14.2 2010-05-29 LabFrame(3pm)
All times are GMT -4. The time now is 01:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy