I would like to make my windows form app self updating when it starts. Where can I find good information for that?
I am using Visual Studio 2008 VB.NET.
I'm setting up a new svn+trac environment, the svn server's version is 1.6.11, then I can't find any corresponding pre-compiled svn-python binding, finally I found the following thread:
http://stackoverflow.com/questions/677252/python-svn-bindings-for-windows
so, my question is: how to compile from these source?
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/python/
Hello :)
I need to test a piece of code which only seems to fail on Windows XP RTM. Unfortunately, all my disks came slipstreamed with SP2 on-disk. Is there any way to install an RTM install using my SP2 CD and key?
Billy3
PS: Not sure if this belongs on SU or not -- please vote it over there if you think so.
i have been working on a program that will enter usernames and passwords if someone plugs in a Usb, but i don't know how to enter a windows log in password. So the idea is to have my program running so it can find if the usb is plugged in if so it will use keybd_event to enter the password and to hit enter. how would i get my program to run so i can do this?
If I'm writing a simple text log file from multiple processes, can they overwrite/corrupt each other's entries?
(Basically, this question http://stackoverflow.com/questions/1154446/is-file-append-atomic-in-unix but for Windows/NTFS.)
I'm trying to attach to a windows service I am running to debug it however the "Available Processes" list under "Attach to Process" it shows as disabled and won't allow me to attach. What am I missing?
I was working with Zend on Ubuntu and it was working correctly. Now I moved to windows for same project. But now elements of my form are not rendered correctly and their code is appeared on brower's page like this:
translate( $this->element->getElement("email")->getLabel() ) ?>
Any idea that what is the problem?
How to Remote desktop connection from home to work in windows 7.I can remote desktop connection LAN network.But i can't access from home to work.What is RD gateway and how to use it?
I have the problem I just installed the new Monodevelop 2.2.2 on Windows but I haven't the database add-in and I cannot add-in with the basic repository.
Are-there other repository for that ?
Thanks with advance.
Narglix
What is Windows' best I/O event notification facility?
By best I mean something that ...
doesn't have a limit on number of input file descriptors
works on all file descriptors (disk files, sockets, ...)
provides various notification modes (edge triggered, limit triggered)
In a Unix world I've been happily using gdb for debugging and valgrind for memory analyzation.
Are there open-source quality alternatives for Windows?
I'm looking for lightweight pieces of software that do what you need, and never get in your way (just like gdb and valgrind).
Hi all,
on a windows mobile 6.x phone, is there a way to instruct the connection manager (or whatever other component) to establish a data-link through a particular APN?
Thank you very much.
I am curious if there is any history behind why the ^ character is used to escape the special characters <, , |, &, and ^ in environment variable names in Windows instead the '\' character that is typically used to escape special characters.
Please note that I realize there may be no reason for this, but I'd be interested to hear if there is a reason.
Hi,
I've Motorola Symbol Handheld Model MC3090 (from symbol MC3000 series), having Windows CE 5.0.
Is it possible that i can upgrade the Handheld OS from CE 5.0 to CE 6.0?
I was wondering (if possible) if there was a program/tool/utility that when I create a new file and provide it with an extension that it creates the tags automatically?
For example, a new file I create called index.php would have the appropriate tags auto-generated inside:
<?php
?>
I hope you get the idea. Does one, or could one, exist, preferably Windows based?
Any information regarding this would be helpful.
Hi, the problem is, im using a leased windows server, and im trying to create a directory using php function mkdir, whichever path i try gives the same result.
im using absolute something like this.
mkdir('D:\Hosting\3105674\html\lepsiprisma\hola',0777);
I'm looking for a way to host a web UI in a windows service so that I can configure and control it within a browser. I'd like a simple and lightweight solution, and I don't want to use IIS.
I could probably hand-roll most of it but I was wondering if there was something already made to ease the process.
I have a feeling I should be able add a directory to the PATH environment variable on an application-lifetime basis, but I can't find out how to do this. Is it possible to add a parameter to a Windows shortcut that appends a directory to the current value of PATH for use by the application being linked?
Cheers.
I'm having trouble getting command line arguments passed to Python programs if I try to execute them directly as executable commands from a Windows command shell. For example, if I have this program (test.py):
import sys
print "Args: %r" % sys.argv[1:]
And execute:
>test foo
Args: []
as compared to:
>python test.py foo
Args: ['foo']
My configuration has:
PATH=...;C:\python25;...
PATHEXT=...;.PY;....
>assoc .py
.py=Python.File
>ftype | grep Python
Python.CompiledFile="C:\Python25\python.exe" "%1" %*
Python.File="C:\Python25\python.exe" "%1" %*
Python.NoConFile="C:\Python25\pythonw.exe" "%1" %*
Hi, in Mac or Linux, we can simply define IP and hostname in /etc/hosts. Then we can call another local computer with hostname (not with IP) we defined. But in windows, How can I do that? Where can I edit such configuration?