The about-box tag has no wiki summary.
-1
votes
1answer
29 views
How to create about for a java program in mac? [closed]
I wrote a java program and bundle it to .app but I can't find a way to write something in "About" of that program. Any help would be appreciated.
1
vote
3answers
101 views
how to return to previous activity from about with a button click?
Im trying to return from the about dialog to the main activity by a button click:
public class AboutActivity extends Activity implements OnClickListener{
@Override
protected void onCreate(Bundle ...
0
votes
1answer
91 views
How to add About dialog to project
I have just completed my first Qt 5 project and I want to add an About dialog. Is there a default, and how do you use it? If not, what's the best way to add one and edit it and display its content ...
1
vote
1answer
40 views
How to customize the text in a default About window?
I have a Cocoa app and I want to use the default About window like this:
How can I change the text? ex:
Engineering:
Some people (I want to change this text to the real developer)
Can ...
1
vote
0answers
26 views
About Menu in my Xcode 4 Project remains disabled
Unfortunaley the About Menu of my project is disable and I can´t enable it.
I set up an IBOUTLET
IBOutlet NSMenuItem *aboutMenu;
and then I tried to enable it like this in ...
0
votes
1answer
174 views
Xcode - Customize “About This App”
How do I change the "About this app" window of an app in Xcode? I've made a little app, but I don't know how to change this little thing. Thank you for your help :D
0
votes
2answers
137 views
Eclipse RCP - feature only present in about dialog after product export, not when executed in IDE
I am working on the about-dialog of my Eclipse RCP Applicaiton.
The features, which I am using (native platform features and my own) only show up, when I do an export from Eclipse.
When I run my ...
0
votes
1answer
158 views
Eclipse RCP 3.7 - feature icon in the about dialog does not apear
I followed this tutorial, but the feature icon does not apear in the about dialog.
What could be the reason?
I have created one feature-X-based product.
I defined a plugin Y as feature X's ...
0
votes
1answer
66 views
How can you make an about message under the Application name menu on a Mac?
How can you make the About... Option under the Application Name menu on a Mac work? I would like to have a message that displays the version name for the application.
Thanks!
1
vote
0answers
67 views
Why is Application.aboutHandler() not being called when run from the command line?
In my Java app I use the following code when the main frame is initialized to override the default "About" dialog behavior on MacOS (see here for the Apple extensions).
Application a = ...
0
votes
2answers
370 views
Netbeans template AboutBox Java
I used this code previously in netbeans 6.9.1 but it does not seem to work in 7.1.1, it underlines .getApplication() with the hint "cannot find symbol".
How can I make this work again?
JFrame ...
0
votes
3answers
1k views
Visual Studio C++ how to display a dynamic message (i.e., string) in my About box?
Should be trivial . . . when editing via the VS resource editor.... the tools/objects list only shows 'static text' and the create an event handler wizzard has all fields and [next] button dimmend ...
-2
votes
1answer
217 views
is there a “About box” of Java swing in C#? [closed]
I'm looking for an control or something like to About box Java Swing in C#.
UPDATE
as in the pic:
Any help is very appreciated thanks in advance.
1
vote
1answer
201 views
Changing the size of a standard About panel
In my app I display a standard About window using the method orderFrontStandardAboutPanel:of NSApplication.
The panel thus presented has a size of 285x335 pixels. Is there a way to make it bigger?
...
3
votes
1answer
220 views
In order to Macify a Java app, to catch the about event, do I have to implement a menu?
The macify Notepad example is the only example of 'macification' I could find, and it's all fine and dandy I guess, apart from the menu which completely screws up my layout.
I'm very, very new at Java ...
0
votes
1answer
58 views
Opening About (App Name) with a button (Mac os x)
I was wondering if it would be possible to have a button inside of my mac app and when you click on it, it will open the About (App Name) window?
Hope it makes sense! :)
2
votes
1answer
504 views
Java OS X Lion About Menu
I am trying to override the about menu in a Java Application on OS X Lion or anything from Leopard & above. How do I do that? The tutorials I have read so far do not seem up-to-date, some classes ...
3
votes
1answer
1k views
Eclipse 3.7 Indigo : “About dialog” error
I recently upgraded my Eclipse 3.6 instance to 3.7.
I wanted to view the Help -> About Eclipse option, but this dialog does not show up.
Ran it with the -consoleLog -debug option to understand what ...
1
vote
3answers
220 views
Problem on aboutBox() in java
I'm developing a javadesktop application in Netbeans 6.9 and everything is perfect but...it gives me an error on this :
@Action
public void showAboutBox()
{
if (aboutBox == null) {
...
0
votes
2answers
203 views
Suggest own iphone application, how?
in my iphone app, in about view, i want insert a button to suggest the application to other people, but i don't know how do this...(email? Facebook/Twitter? other?)
What do you suggest? What the best ...
0
votes
1answer
263 views
How to set icon in gtk.AboutDialog on Windows?
I have an about dialog in my Python application and I want to set a custom icon for the dialog.
I looked at set_logo_icon_name(), but that doesn't accept an absolute path to an image.
What can I do ...
3
votes
2answers
784 views
About box with Application is agent (UIElement) set to YES?
Im trying to create a application that should only be visible in the status bar, and not have a window until you press the NSStatusItem menu options. So i have one that should open "about"
...
0
votes
1answer
412 views
Problems with about box in WPF application
I have tried adding an about box in blend using the method described here:
http://stackoverflow.com/questions/3411952/about-window-or-about-box-in-wpf-3-5-vs2008
However, I end up getting an error ...
1
vote
2answers
2k views
How to display icon in QMessageBox?
I have an about box that I'm trying to display an icon inside.
Here is my code:
QMessageBox about_box(this);
about_box.setText("...");
about_box.setIconPixmap(QPixmap("qrc:/images/logo.png"));
...
0
votes
3answers
2k views
About Window or About Box in WPF 3.5 (VS2008)
I am looking for About Window for WPF VS2008. Any Source code is available to download or one have to develop on his/her own.
Thanks you,
Harsha
3
votes
1answer
757 views
Android - About box in application manager?
I was wondering does anyone know how to give an Android application an about box in the application manager?
So when a user goes to Settings > Applications > Manage Applications and clicks on an app ...
6
votes
6answers
12k views
How do I get the About box to appear in C#?
I have an About box in my C# project using Microsoft's Visual C# 2008 Express Edition named AboutBox1. I have made it look how I want it in the design view, but how do I make it appear when the About ...
0
votes
1answer
72 views
How do you create a sequence of modalViewControllers?
I have struggled and now I just need to see it in action. I have an info-button on my title page (UIViewController) and I want to bring up an About-view with a 'dismiss' button on the left and a ...
9
votes
5answers
3k views
Opening an about box using MVVM pattern
I'm working on a new WPF application and I'm trying to stay as close to the MVVM pattern as I can. My XAML files right now have no codebehinds, and all my interactivity is achieved using Josh Smith's ...
0
votes
4answers
100 views
What information is important to include in an About dialog?
What information is important to include in an About dialog?
Definitely:
Name of the software
Version
Copyright notice
Usually:
Assemblies versions (for .NET applications)
5
votes
6answers
379 views
What should I display in my About box?
I've built a small .NET winforms utility for internal use at my company, and as the primary interface is a tab control, I've decided to add a tab for the "about box" instead of a separate form. So, I ...
6
votes
6answers
930 views
How to design a good about box?
There is not official standard dealing with the layout of about boxes, which display the credits of a computer software and other information.
What should a good about box contain? And... is it okay ...
