is the code given is executable in Windows system? as it seems to be Linux commands
echo 'create database foo2' | mysql -uroot
mysqldump --skip-triggers -uroot foo | mysql -uroot foo2
Hi,
My application uses its own file format (compressed SQLite databases) to store user created data.
1) I would like to know how to provide keywords, tags to Windows so that Vista search function can include my file format when indexing.
2) I would like to provide a properties page like you see when you right click a Microsoft Word document and select properties.
Kindly point me in the right direction.
Thank you.
When making games for windows 7 phone will there be separate places for XNA based games and silverlight games? I'm curious how this will work.
Are all XNA based games going to work out of box? How would someone differentiate an app developed specifically for phone vs just a port?
I am trying to find out how long does it take each thread timeslice (quantum) in Windows but the only information that I found out is about the clock ticks being from 15 to 20ms or 20-30ms.
How can I find this information ?
I think it may vary from OS to OS, but I am not certain.
I appreciate any suggestion on this subject.
Thank you.
Is there a way to take my C++ code and cross compile it to run on Windows, Mac OS, and Linux? Is there a tool to do this, or does it have to be manually compiled on each OS via Terminal/Cygwin?
Hi,
I want to use git as a local repository against a remote SVN repository. I installed version 1.6.0.2 from http://code.google.com/p/msysgit/downloads/list.
According to the documentation synchronization is done via the command
git svn
or a separate command wrapper called
git-svn
Neither of them is available in my installation and I could not find a separate download for Windows binaries.
I'm currenty using the MSYS build. Must I switch to cygwin?
In Windows the Dropbox client uses python25.dll and the MS C runtime libraries (msvcp71.dll, etc). On OS X the Python code is compiled bytecode (pyc).
My guess is they are using a common library they have written then just have to use different hooks for the different platforms.
What method of development is this? It clearly isn't IronPython or PyObjC. This paradigm is so appealing to me, but my CS foo and Google foo are failing me.
hi there
Have switched to windows authentication in the debug mode, set NLTM in the project options but when i press play it just gives me a blank screen! Any ideas what I can do now?
thanks!
When looking at the documentation for the banner tag in windows media metafiles all the documentation says there is a maximum size of 194 x 32 pixels.
http://msdn.microsoft.com/en-us/library/dd562478(v=VS.85).aspx
However, when experimenting with larger images they seem to be displaying correctly. Is there some real undocumented limitation here? Will it get cut off on different/older versions?
I wonder why this is not integrated by default. I'd like to have an item in Windows Explorer's file context menu of a VS solution file to build it.
Is there a tool for this? Or do I have to create this myself?
I have a PHP web application on an intranet that can extract the IP and host name of the current user on that page, but I was wondering if there is a way to get/extract their Active Directory/Windows username as well. Is this possible?
I got a new machine whose OS is windows XP professional x64 edition. Which version of Apache should I install? There doesn't seem to be a build for win 64, I can just see a build for win 32, will it work with win 64?
In Windows XP, one can press Alt-PrintScreen to copy an image of the active window, or Ctrl-PrintScreen to copy an image of the full desktop.
This can then be pasted into applications that accept images: Photoshop, Microsoft Word, etc.
I'm wondering: Is there a way to save the screenshot directly to a file? Do I really have to open Photoshop simply to paste an image, then save it?
I just read this (one) study in which Tomcat under Linux outperformed Windows.
From your experience, is this generally true? Any deep reason that could explain the performance difference?
I need to create an installer for my software for Windows XP and newer. Is there any mechanism to do that on a Linux machine alone? (I'm running ubuntu, but I'd guess is not a show stopper).
Hi,
Any ideas on gracefully stopping a windows service with mutli-threaded processing on a timer thread? Is it possible to add some infinite loop logic in the OnStop method to postpone the service shutting down.
I'm disabling auto-complete and auto-suggestion on Windows Mobile 6.1 by setting the following registry keys:
HKCU\ControlPanel\Sip\SuggWords => 0
HKCU\ControlPanel\Sip\SuggAutoCorr => 0
However it doesn't seem to change anything until I restart the device. The control panel applet that exposes these settings somehow tells the SIP keyboard to reload, but how?
windows only record 1 user/pwd to a remote share dir,
and my program need to connect a dir,
but the user may login first, let my program failed to connect,
is there a method to disconnect it? i only know the IP.
I use wnetcancelconnection2(remotedir) first, but still cannot work,
and return 1219 error(credentials supplied conflict with an existing set of credentials)
How can I run solr on a windows server, so it starts up automatically?
I run it with:
java -jar start.jar
but I need the server to do this automatically.
This is the FindGTK.cmake:
# don't even bother under WIN32
IF(UNIX)
...
ENDIF(UNIX)
So it's not intended to work in windows at all,even though I've already installed the gtk+-bundle_2.20.0-20100406_win32 days ago.
How should I properly use gtk with cmake now?
I need to resize images and resample them so they don't end up all jagged (I think that's called aliasing).
I found some code (sorry, lost the link) that does this in pure VB6 code but it's a bit slow (2-5 seconds) and I'm displaying pictures in real time so I need something faster.
I seem to recall seeing some examples of doing this with the GDI+ library. An example in VB6 would be ideal, but I can probably work with a simple example with Windows API calls in another language.