Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
4answers
24k views

Creating application shortcut in a directory

How do you create an application shortcut (.lnk file) in C# or using the .NET framework? The result would be a .lnk file to the specified application or URL.
15
votes
2answers
4k views

How do I create Visual Studio shortcut files

In Visual Studio there is a way to have a file in another project that is a shortcut to the first so that it builds in both. How do I do that?
12
votes
5answers
4k views

How do you add Start->Run shortcuts in Windows XP?

Does anyone know how you setup new commands to launch an application from the Start->Run box? ie. you can type "firefox", "winword" or "excel" into the Run box and those applications will open even ...
12
votes
4answers
7k views

Application wide keyboard shortcut - Java Swing

I would like to create an application wide keyboard shortcut for a Java Swing application. Looping over all components and adding the shortcut on each has focus related side effects and looks like a ...
11
votes
5answers
3k views

Can StyleCop automatically fix anything?

I've decided to start running StyleCop on a medium sized project and am getting over 1000 warnings. Is there a quick easy way to fix most of these warnings? Most of the warnings could easily have ...
9
votes
4answers
4k views

Short cut to create properties in Visual Studio?

I have seen some people creating properties in C# really fast but I don't know how they did it. Does anyone know what short cut are available in Visual Studio (currently using 2010) to create ...
9
votes
5answers
5k views

Java System-Wide Keyboard Shortcut

Is there any way to get a system-wide (global) keyboard shortcut to perform an action in a Java application? Any AWT/Swing bindings?
9
votes
4answers
2k views

Horrible VMware keyboard shortcuts [closed]

I'm a VMware user and far too often I use keyboard shortcuts while programming. However, this has proved to be quite distressing as sometimes the VMware gets hold of it and turns off / pauses (ctrl+Z) ...
7
votes
4answers
538 views

git add -A, git commit in one command?

Is there any way I can do git add -A git commit -m "commit message" in one command? I seem to be doing those two commands a lot, and if git had an option like git commit -Am "commit message", it ...
7
votes
4answers
1k views

How to programmatically create a shortcut using Win32

I need to programmatically create a shortcut using C++. How can I do this using Win32 SDK? What API function can be used for this purpose?
6
votes
5answers
92 views

Modern language support += but not &&=

Most (but I only actually know a small number so lets not get picky on that point) high level languages support multiple different assignment operators. a += 5; // increment a and assign result ...
6
votes
2answers
207 views

Nested overrides in portal_skins folder

How one could override files in nested portal_skins folder? The default behavior seems to be that you need to copy whole folder structures if you want to override a single file. This is a maintenance ...
6
votes
5answers
131 views

Does VS has any shortcut like ctrl+q in eclipse?

It returns your caret(aka cursor) to the place where you stopped writing code(very useful for fast code browsing)
6
votes
2answers
277 views

Delphi: How to localize description for a menu shortcut?

Is there a way to get a localized description of a shortcut like Ctrl+Z so that I get "Ctrl+Z" if the app runs on an English system and "Strg+Z" on a German system? The VCL function ShortCutToText ...
6
votes
1answer
493 views

Eclipse shortcut “debug last debug configuration” (not F11)

I'm looking for a shortcut to debug the last debug configuration. I know about the existence of F11, but the problem is, that I want to start debugging the last configuration. F11 runs the debugging ...
6
votes
5answers
1k views

Eclipse shortcut to run a class

I have an Eclipse project where I often launch the same java class. I have added my run configuration to the favorites menu, but to launch it I still need to click on the run-drop-down menu and click ...
6
votes
2answers
3k views

How to create desktop shortcut for all users in WIX

I am developping a MSI installer by using WIX, I can create shortcut on desktop for only one user. Now what shall I do to make a shortcut for all users on the machine? Please advise. Thank you. ...
5
votes
4answers
68 views

Is there any short hands for doing this logic?

Here is the code.... if(!(isset($_POST["email"]) && isset($_POST["sessionKey"]) && isset($_POST["page"]) && isset($_POST["ipp"]))){ return; }else{ $email = ...
5
votes
5answers
528 views

2D array values C++

I wanted to declare a 2D array and assign values to it, without running a for loop. I thought I could used the following idea int array[5] = {1,2,3,4,5}; Which works fine to initialize the 2D ...
5
votes
1answer
194 views

How do I create a shortcut with the name set to [PRODUCTNAME] in a VS Setup and Deployment project?

In my VS Setup & Deployment project, I want to create a desktop shortcut whose name is set to the [ProductName] property. Instead of using the property, the setup program simply treats ...
5
votes
3answers
2k views

Eclipse keyboard shortcuts for compare/diff view?

When I am comparing two files in Eclipse (using, for example, "Compare With" --> "Local History"), what keyboard shortcuts are available? I would like to be able to go to the next/previous diff and ...
5
votes
1answer
345 views

Webbrowser Control stealing shortcuts

Webbrowser Control in my .NET Windows Form application is stealing shortcuts when on focused. To able to use Alt + F4 I had to click a control first. Currently "WebbrowserShortcuts = false" but it's ...
4
votes
5answers
83 views

What is shortcut for setting primary key in SQL Server 2008?

I am creating a table, how can I set primary key for my table without using my mouse ? I wanna do this with my keyboard (short key).
4
votes
3answers
144 views

C# How to add my program to context menu?

I have a c# executable file (created from a windows form application) and I would like to be able to add this file to the context menu. Furthermore, I should point out that I need to be able to add it ...
4
votes
1answer
158 views

Python, Pyinstaller creating shortcuts in windows

I am making a python script that creates a shortcut (.lnk) file, using win32com.client module, I am using pyinstaller to convert it to exe. I'm also using Tkinter, so I need --tk support in ...
4
votes
2answers
249 views

Get Shortcut Recorder working in Xcode 4

Is there any way to have a Shortcut Recorder in Xcode 4, where the user can choose the shortcut? I tried DDHotKey, which worked for me, but with this the user can not choose the shortcut himself. ...
4
votes
2answers
429 views

Java Swing Key Event base

In one of my menus, one menuItem's shortcut key is Ctrl+Greater code for that is KeyEvent.VK_GREATER, Event.CTRL_MASK but when I press Ctrl+Greater it's not working.... Can any one please suggest? ...
4
votes
1answer
116 views

Menu Access Keys in WPF

I have a classic menu with assigned access keys. Problem: Use presses Alt+E (Edit menu), then while holding Alt he presses F. He expects that submenu Edit -> Form will be selected, but instead upper ...
4
votes
9answers
222 views

Shortcut for: $foo = explode(“ ”, “bla ble bli”); echo $foo[0]

is there a way to get the n-th element of a splitted string without using a variable? My PHP code always looks like this: $foo = explode(" ", "bla ble bli"); echo $foo[0]; Is there a shorter way ...
4
votes
4answers
1k views

Eclipse autocompletion problem

Just installed Eclipse Helios (Win7 64) and I'm having a strange problem. I type syso-Ctrl-Space which is expected to complete to System.out.println("") but it doesn't work! I searched the web for ...
4
votes
1answer
337 views

Ignoring symlinks in git

Is there a way to make git completely ignore symlinks (leave them in the tree, but not create them on checkout)? Alternatively, is there a way to make git convert between symlinks on linux and ...
4
votes
4answers
2k views

Code-snippet or short cut to create a constructor in Visual Studio

What is the code-snippet or short cut to create a constructor in Visual Studio? Visual Studio 2010 and C#. I've used before but I can't remember.
4
votes
1answer
234 views

How can I specify an icon with a RELATIVE path for a Linux desktop entry file?

For one of my Linux applications, I have the application binary, a launcher.sh script (for the LD_LIBRARY_PATH) and a .desktop file, all in the same folder. I'd like to use a relative path rather ...
4
votes
3answers
883 views

WOW64 woes (.lnk shortcuts)

I'm using Windows 7 (x64) and Delphi 2010. I'm writing a component that will emulate the start menu. However, I've run into the following problems: If I attempt to open a shortcut (.lnk file) with ...
4
votes
6answers
4k views

Creating an empty txt file on Mac OS without opening an application first

Is there a way to simply create a new document e.g. on the Desktop and open it with e.g. textmate with a simple shortcut or script. I know that the MS Windows approach where you can just create a new ...
4
votes
4answers
327 views

c# one liner for .ToString() across entire array

I feel stupid for asking, but there must be a one liner that does the equivalent or near equivalent of the code below in c#... so can you tell me what it is? public static string[] ...
4
votes
5answers
6k views

Android homescreen shortcut permission error

In my program it adds a shortcut to the screen. I get the icon on the screen fine, but when I tap it, I get: 03-01 20:00:29.410: ERROR/AndroidRuntime(796): java.lang.SecurityException: Permission ...
4
votes
9answers
3k views

What is the native way to create a shortcut (.LNK file) from the Windows XP command line?

EDIT! Sorry to change the question on everyone, but I am really just asking: How do I create a shortcut (.LNK) file from the command line with as little outside help as possible? I really don't ...
4
votes
3answers
3k views

Reading the target of a .lnk file in Python?

I'm trying to read the target file/directory of a shortcut (.lnk) file from Python. Is there a headache-free way to do it? The .lnk spec [PDF] is way over my head. I don't mind using Windows-only ...
3
votes
3answers
56 views

python help() function shortcuts

What are shortcuts of Python help() function used in Python interpreter? I'm interested for help content that doesn't fit to window and shows "-- More --" at the bottom. I found q quits help(). What ...
3
votes
3answers
116 views

Copying files behind shortcuts in C#

I am using C# to access the most recent files on a system and copy them via Environment.SpecialFolder.Recent The recent folder in Windows however just creates shortcuts to the actual location of ...
3
votes
1answer
108 views

Fully “Kiosking” Chrome (capture and prevent default of C-w/t/n)

I need to prevent Ctrl-w, Ctrl-t, Ctrl-n from doing their default functionality. inb4 zomg i hope this isnt possible, your an awful purson. event.preventDefault() only works on lesser key combos ...
3
votes
4answers
174 views

Java shortcut: generating an array to change a for loop into a for-each loop

I have considered using this shortcut in my competition programming. I define a function: private static int[] range(int n) { int[] ret = new int[n]; for (int i = 0; i < n; i++) { ...
3
votes
1answer
3k views

Android create shortcuts on the home screen

Hi my mind is messed up............What i want to do is: 1) i'm inside an activity, there are 2 buttons. If i click the first one a shortcut is created in my home screen. The shortcut open an html ...
3
votes
2answers
176 views

How to make a customizable button to launch applications?

I am trying to add a button to my application. When clicked I would like to launch a selection dialog that shows all shortcuts or installed applications. Choosing one should permanently set the button ...
3
votes
2answers
240 views

What are the hidden Shortcuts in Swing Components?

I found out Ctrl+Shift+O in my JTextPane changes the ComponentOrientation. For my own TextEditor I have to disable this, but are there other Shortcuts in JTextPane or in other Swing-Components? ...
3
votes
1answer
329 views

SELECT all of a user-defined datatype/structure

Is there a shortcut to selecting all the components of a user-defined datatype/structure in SYBASE 10? So if Resrv is a field based on a user-defined datatype/structure, something like: SELECT ...
3
votes
5answers
140 views

How can I concisely compare a single variable to many different values?

I know you can write a statement like: if (num1 != a && num1 != b && num1 != c ..........&& num1 != z) (do something); But is there an easier way to compare the num1 ...
3
votes
1answer
799 views

How do I programmatically write a shortcut to a specific page on the homescreen of the Android launcher?

I am currently working on an Android application whereupon I programmatically write a shortcut to the home screen. Something like this: Intent shortcutIntent = new Intent(); ...
3
votes
1answer
432 views

Long argument length in a Windows shortcut?

I am trying to create a shortcut (on the Desktop) that contains a long argument string (> MAX_PATH). The MSDN documentation clearly states that for Unicode string the string can be longer than ...

1 2 3 4 5 8