1
vote
3answers
206 views
Making a windows shortcut start relative to where the folder is?
I have a game that uses this file structure:
GAME FOLDER
->data
->data->run.bat
I want to put a shortcut to run.bat in GAME FOLDER, but if I move it, or someone else installs it …
0
votes
3answers
252 views
How many ways can I get Bash alias completion on a partial substring?
Question: I have a question that is apparently not answered by this already-asked Bash completion question on Stack Overflow. The question is, how to get Bash alias completion (for …
1
vote
9answers
2k views
Windows shortcut (.lnk) parser in Java?
I'm currently using Win32ShellFolderManager2 and ShellFolder.getLinkLocation to resolve windows shortcuts in Java. Unfortunately, if the Java program is running as a service under …
0
votes
1answer
30 views
creating Visual Studio shortcuts keys
There are some things that I do a lot in a new project, for example, entering in a simple call to the Google AJAX API to include jQuery. Can I somehow map my own shortcut combo in …
54
votes
33answers
3k views
What Linux/Unix commands are outdated and have powerful alternatives?
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like …
3
votes
10answers
826 views
Emacs equivalent of Vim’s yy10p ?
How can I copy a line 10 times easily in Emacs? I can't find a copy-line shortcut or function. I can use C-aC-spcC-eM-w to laboriously copy the line but how can I then paste it m …
0
votes
2answers
65 views
Is there a way to override previous registred actions with a shortcut ?
I have a unit with a lot of actions, some actions have shortcuts and some have even the same shortcut. This is because they belong to different modules in applications and they are …
0
votes
2answers
58 views
PHP Session Variable shortcuts?
So I'm doing some maintenance on a PHP site that is using $_SESSION variables. I started seeing some very very weird behavior and after hours of debugging I just figured this out. …
0
votes
0answers
74 views
hi everyone, what’s the shortcut in excel to show/hide cell comments? [closed]
hi everyone, what's the shortcut in excel to show/hide cell comments?
great thanks!
1
vote
1answer
57 views
How to keep application shortcuts current/in sync ?
I have an application auto updater which checks for new updates, moves the existing files including the app.exe into a new folder and copies the new version .exe + .dll's into the …
1
vote
3answers
153 views
Disabling Accessibility Shortcuts in .NET Application?
This msdn article -- http://msdn.microsoft.com/en-us/library/bb219746(VS.85).aspx#Disabling_Accessibility_Shortcut_Keys -- provides information for C++ programmers on how to tempor …
0
votes
2answers
234 views
How do you create an application shortcut (.lnk file) in C# with command line arguments
I've written a simple FTP based file synchronization program. The settings of which can be stored in an XML file. I want users to be able to quickly open the program using various …
0
votes
5answers
561 views
.NET App Shortcut for MSI When Run By Regular User
I have a C# application that uses the built-in MSI builder in Visual Studio 2005.
After deploying the application using the MSI (via CD) onto the target computer, I launch the Des …
0
votes
1answer
117 views
Is there a way to resolve a .lnk target that works for links that end up in c:\windows\installer ?
The usual way to resolve lnk involve using WShell.WshShortcut or IShellLink that way :
var WshShell = WScript.CreateObject("WScript.Shell");
var oShellLink = WshShell.CreateShortc …
1
vote
1answer
500 views
desktop shortcut icon not showing in web setup project
i've created a web setup project and i wanted it to create a desktop shortcut to the web application (ex: http://localhost/xx/yy.aspx). up to this point it was pretty easy: i creat …
