Questions tagged [application-name]

37 questions
2
votes
2 answers

How you set the application_name attribute for PostgreSQL in Laravel?

How do I set the application_name as defined here http://www.postgresql.org/docs/9.1/static/libpq-connect.html, in Laravel? I see that you can do "SET application_name = 'application'" but this does not work for me. I also tried setting it in the…
2
votes
3 answers

How to change app()->name dynamically in Yii?

I am developing a website using Yii. I want to change the application name dynamically in program. I know I have to change the Yii::app()->name value. But I know where should I put it to overwrite what is written in config.php file. Where should I…
hd.
  • 17,596
  • 46
  • 115
  • 165
2
votes
0 answers

correct usage of the VERSIONINFO resource

I have set up my version table info in my version.rc file as follows: +-----------------+-----------------------------------------+ | Key | Value …
Anish Ramaswamy
  • 2,326
  • 3
  • 32
  • 63
2
votes
2 answers

c# How to get a meaninful name of website or executable

We have an internal error reporting system (inside our functions dll) and one of the info pieces we send is the name of the application that caused it. Current code: string applicationname= Assembly.GetCallingAssembly().GetName().Name; The problem…
VSP
  • 2,367
  • 8
  • 38
  • 59
1
vote
1 answer

Bind Spring Boot application name to rootProject.name from Gradle?

I would like to set the application name in Spring Boot to the value from rootProject.name. Is there a way to do that?
pixel
  • 24,905
  • 36
  • 149
  • 251
1
vote
1 answer

android screen title bar's icon size and removing application's name

I'd like to add an icon of my application to screen's title bar. what shold be icon size? And I'd like to remove the application name form this title bar and display only the icon. How it can be done? Thanks, Eyal.
eyal
  • 2,379
  • 7
  • 40
  • 54
1
vote
1 answer

Google Play: How to change com.comp_name for published applications

Due to some initial wrong settings, the code developed for the application is in the form com.comp_name.app_name. We have noticed after the application was published this discrepancy. We would like to know and to understand if: We can change this…
1
vote
0 answers

Qt qmake TARGET value with special characters

How can I name output executable in qmake, with local characters like ä or ź. Every time I put a TARGET value with special characters, Qt throwing an error: No rule to make target 'xxx.rc', needed by 'xxx.o'. Stop. ex. TARGET = "genügen" or TARGET…
Rajju
  • 357
  • 3
  • 13
1
vote
2 answers

How do I get the current Application Name (in terms of IIS) in a classic asp Web application

I have a classic asp application which retrieves the current application name and sets an Application variable containing that name. This name is important (I wont go into why) and is essentially the friendly name in IIS. The problem is, the…
Mr AH
  • 1,100
  • 3
  • 11
  • 23
1
vote
1 answer

How to SET postgres application_name in a basic PHP script

I'm trying to develop a script to SET application_name log feature in PHP application. pg_query("SET application_name = 'Test log line'"); What I tried it above code. But it give following error, Warning: pg_query(): Query failed: ERROR: …
Yasiru G
  • 6,886
  • 6
  • 23
  • 43
1
vote
1 answer

Icon Name is not showing properly

I am facing odd issue.My proj should run in iphone 3gs, 4 and 5. when I am installing my application to device, application name showing different way. I mean lets say my application name is XYZ Business, then it is showing 'XYZ...ess' in 3gs and…
1
vote
1 answer

How to get application name in WPF

Sometimes we need to get app name in WPF programmatically i.e. icon.UriSource = new Uri("pack://application:,,,/AppName;component/Images/logo.ico"); How we can do it? Thanks!
NoWar
  • 36,338
  • 80
  • 323
  • 498
0
votes
0 answers

System.EnterpriseServices client-side

I have the server-side .NET Framework 4.0 project Server1.vbproj that references System.EntrepriseServices, and some classes that inherit ServicedComponent. I compile and register the dll with regsvc on servermachine1 and the COM+ application…
Alex
  • 419
  • 1
  • 5
  • 14
0
votes
1 answer

Turkish character error in project name in api level 31 and above in React native to Android Project to emulator

I created a project with a React Native Turkish name. My project Name "Şifre". Since there is a Turkish character in the name I have given in the strings.xml file, the project does not work on Android Emulator devices with API level 31 and above.…
0
votes
3 answers

Using jpackage how do I make the installer name different than application name?

I have a Java program that I can turn into an installer exe that makes an app exe jpackage -t exe -i . -n compilerrunner --app-version 1.0 --win-dir-chooser --win-shortcut --main-jar compilerrunner.jar I want the installer exe, to look like…