windows

How to force Windows Mobile device to use GPRS for internet connection

Hi! I'm on WiFi and EDGE/GPRS too. I'm using WiFi for debugging in Visual Studio 2008 but I want my app use EDGE/GPRS for internet connection (socket creation) not WiFi thx & bye, Attila ...

how to set system ip programatically

C++ how to programatically change system IP... and if the the account has Limited Rights how to use the password to perform the task ...

Clean & archive desktop script (windows)

Right now I have a folder called holding zone on my desktop, so that it stays clear, however this folder gets cluttered and I still have to Manually move things to it from my desktop. I would like to schedule a script to move everything except the holding zone folder into a new folder containing the current date in it's name, then move ...

Finding security problems in a given code

Hello guys, Can some one please tell me an approach for finding security flaws in a given code. For ex: in a given socket program. Any good examples or good book recommendations are welcome. Thanks & Regards, Mousey ...

Determining running programs in Python

How would I use Python to determine what programs are currently running. I am on Windows. ...

Is there any way to gather all files and registry entries associated with an already installed app?

I need to create a package with all files associated with an install, so that I can migrate this install to another computer. I cannot download the installer / setup program, and so I need to do this instead. Does anyone have any experience with this? Thank you!!!! :-D ...

how to move two windows forms together?

Hello every one, I've main form when I press btn I open new form with showDialog() function, I need to move two forms together when I press on main form, because they share in design. how can I move them together either I press on main form and move it or I press on form2 and move it? Thx alot for any suggestion. ...

Is developing in Mono cross-platform?

In what measure is developing with mono cross-platform? How do I compile for Windows (in Linux), how do I run things in Linux (because there is no .NET JIT compiler)? So what are the particularities of developing with Mono? What are the advantages over developing with Visual Studio (except cross-platform thinghie)? ...

My Visual Studio 2010 Menus are right aligned, how to fix that?

That's what my menus look like in Visual Studio 2010 since a couple of days: How to fix that without loosing all my Settings? With fixing I mean restore left aligned menus. No other application shows that strange behavior. ...

Building a boost application using a Makefile and MinGW (Undefined references)

Okay so I have the following makefile CC = g++ #CFLAGS = -g -Wall CFLAGS = -g LDFLAGS = -lm #client : shared.lib #server : shared.lib shared : src/shared/opcode.h $(CC) $(CFLAGS) -I./src/ -I./lib/boost/ -L./lib/boost/stage/lib/ -L./lib/win_sdk/ \ -D_WIN32_WINNT=0x0501 \ -lWS2_32 \ -lboost_system-mgw34-mt-1_43 \ -lboos...

is json package included in Python for Windows?

is json package included in Python for Windows? ...

Windows - forcing the display of one process/form within the confines of another

I am looking for suggestions on how to, on Windows, execute a windows form and/or WPF application, and force it's display to always be shown within the grahpic context of another completely separate process (basically as if the "child" process were simply another form control). As a little bit of background, we have a legacy 32 bit ap...

Managing detection of duplicate file names

I am trying to detect a users Steam games that are installed on their computer, I wish to be able to find the appropriate .exe for each installation and backtrack through the directory to get the full path. I've realized that there are several different games that use the same name for the executable file (hl2.exe) but they are in diffe...

WDK : get processId by name.exe

Hi, I'm developing a driver in Windows Filtering Platform and I need the process ID of another process to do what I need to do. I know only the file name of that process (name.exe). In win32 I could use the function CreateToolhelp32Snapshot to get the list of all processes and I could search the PID there. ( http://msdn.microsoft.com/en...

Why is Windows.dcu being flagged as a virus?? DELPHI

I thought maybe the delphi virus had infected my .dcu so I recompiled windows.pas that was in Delphi's C:\Program Fiels...\source\Win32\rtl\win. Here are the results. Here's the virustotal result http://www.virustotal.com/analisis/419f755ae57e6ba469f5c6e36305153dc298517edae2f48ae24af6682335260b-1281224937 I reformated my computer and ...

Is TWebBrowser dependant on IE version?

I am thinking about using the TWebBrowser component that comes within Delphi's default pallet of components in a project, but I wonder if it uses the IE version installed on the client machine? If yes: then I guess it would share its history, cookies, workoffline and stuff like that? Can I separate them somehow? Is there any webbrowser ...

Window Interaction/Messaging in WPF

I have two windows, a main window an a window to update the database, the main window displays some data from the database. I have a private variable in main window that is connecting to DataGrid to pass the data, I need to update this private variable with information i entered in the update window. Should I try to access this data in t...

What minimum screen size should I assume?

I'm designing various unsizeable forms and layouts in Delphi to run on Windows. I'm worried that if I assume a minimum 1024x768 screen size (or greater), I'll run into customers still using 800x600. What minimum screen size should I assume? I don't want to require a minimum that irritates users. What's the best practice or current re...

Problem using SysMonthCal32 window in Windows

I am using SysMonthCal32 windows in my application and I am seeing some strange problems while using it. The problem is regarding sending keydown event to calendar window. As per msdn documentation, if the window handles the message, it should return 0. The problem is whatever key i passes to the calendar window, it returns 0. This caus...

Loading two instances of a shared library...

Hi. For a test I'd like to load two instances of a shared library from an application. The code in the library provides an API but it does not allow me to initialize two (or more) instances of the library because some of the functions rely on static variables.. I'm currently writing unit-tests for this lib, and I'd like to have two ins...