|
Hello i tried adjusting the product name value like this -> string but when i build the program the name does not change is there a trick to it?
Started by Silent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You might be changing the Bundle name which doesn't get used for the name under the icon. .
Specifically, you need to set the value for the Bundle Display Name key in the Info.pList .
You can change it in the plist of your application .
|
|
When I right click an executable I installed in Windows Vista and open the properties, it contains a product name and file description in the details tab (in my case, the exe's file name is "chrome.exe" but the product name is "Google Chrome"). Is there...
Started by Philipp Lenssen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can change the summary information of an PRODUCT_NAME.msi (... .
You might be able to change them with a resource editor , although I can't really help you on that one .
Those properties are given when the executable is compiled, so they are hardcoded .
|
|
Our product contains a bunch of modules spread out over several visual studio solutions and uses C++ and C#. I'd like to define a product name and use it as part of default folder locations, registry keys, etc.
What is the simplest way to define this ...
Started by Martin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The default name can which contains (among others) the function:
GetProductName(char* pName, int iSize);
so product name.
Function to get the product name, and those functions will have a default name.
|
Ask your Facebook Friends
|
I'm using msiexec.exe /x {GUID} to unistall my application, but it only shows "Are you sure you want to uninstall this product", how can I show the product name?
Started by Chris on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is a Windows....
To open the msi and see the tables you can use application named Orca (One Really Cool Application from Microsoft Platform SDK) .
Check the value of record with Property field named ProductName in the table named Property in msi file .
|
|
How to translate MS Windows OS version numbers into product names?
For example, in .NET the following two properties could be used to work out that the product is MS Windows Vista Ultimate Edition :
Environment.OSVersion.Platform returns Win32NT
Environment...
Started by Thomas Bratt on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use WMI to get the friendly product name ("Microsoft.
To assemble the full version string.
|
|
What is a good strategy for dealing with changing product and feature names in source code. Here's the situation I find myself in over and over again (most of you can relate?)...
Product name starts off as "DaBomb" Major features are "Exploder", "Lantern...
Started by RichAmberale on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It's all about process....
Create a branch, perform the renames, run unit/integration tests, commit, merge, repeat .
I consider renaming to better naming conventions just another form of refactoring .
How do you deal with Localization? Same thing; same method .
|
|
I flatter myself that I'm a good programmer, and can get away with graphic design. But something I'm incapable of doing is coming up with good names - and it seems neither are the people I work with. We're now in the slightly ludicrous situation that ...
Started by Marcus Downing on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If your product name can't be pronounced at all, you'll get no word.
Just for uttering its name.
|
|
I develop a product with a custom database configuration. I use ADO.NET with System.Data.Odbc.OdbcConnection for it. To make some differences between the databases is there a simple solution to detect the current DBMS of a connection.
Started by Horcrux7 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Connection.Database would work or you can execute
select db_name()
to expand on connection.Database
connection.Open(); Console.WriteLine("ServerVersion: " + connection.ServerVersion + "\nDatabase: " + connection.Database); connection.ChangeDatabase("master... .
|
|
How can this be achieved? I would like to get the name so i can display it within an app, without having to change it in code each time i change a name, of course.
Started by Edward An on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this
NSBundle *bundle = [NSBundle mainBundle]; NSDictionary *info = [bundle infoDictionary]; NSString *prodName = [info objectForKey:@"CFBundleDisplayName"];
I had a problem when I localize my application name by using InfoPlist.strings, like
CFBundleDisplayName... .
|
|
Hello,
I have edited "truncates" in product-list.tpl, but nothing has changed.
Where can I change the length ?The product name is not showing completely.
Thank you!!!
Back to top
Started by Genet on
, 11 posts
by 5 people.
Answer Snippets (Read the full thread at prestashop):
I'm on prestashop 1.4.4.1
I find this unbelievable....
Editing product-list.tpl from themes/prestashop doesn't change a thing.
So far nada.
I think I've browsed through entire forum looking for solution .
Is there anyone who can help with this very important issue .
|