system

android get version of system

Hi everybody! Does anyone know how can I check system version (1.0 .. 2.2) in run-time? Thanks ...

WPF - remove system menu icon from modal window, but not main app window

Hi everyone. I'm trying to do (in WPF): Have an .exe file that displays the system menu icon (the icon in the upper left of the window) like normal Not have this icon show up in modal windows called by this app I tried the solution here: http://stackoverflow.com/questions/2341230/removing-icon-from-a-wpf-window And this worked. The...

How to find a hidden icon in system tray using FindWindowEx or a similar function?

Hello all, Is it possible to find a window by class using FindWindowsEx if it's currently hidden in the system tray? Looking for children of ToolbarWindow32 works if the icon is not hidden, but what to do when it is? Thanks. ...

TFS Permissions

So, I'm running a TFS build that tests a class that manipulates TFS WorkItems. TFS runs as the SYSTEM user which has been added to the /Contributers permission group. However, the test suite fails with various invalid field errors (created by, Assigned to). Does any one know how to set the SYSTEM user up as a valid user? ...

return result of system function in char*

Hello Suppose I do a system("ps-C nautilus"); how do I return the result of this function in char* ? Thank you. ...

Problem with import custun storage. Django

Hi I'm siting with my custom storage system 1 day. And now when I'm trying import it it gives me this Error. I put in file models.py from FTPStorage import FTPStorage import datetime from django.db import models fs=FTPStorage() class Upload(models.Model): """Uploaded files.""" file = models.FileField(upload_to='uploads', store...

What does #if !USING_NET11 using System.Runtime.InteropServices.ComTypes; #endif mean ?

Hi, what does the following code mean and what does it do ? Is it really required ? #if !USING_NET11 using System.Runtime.InteropServices.ComTypes; #endif In my project file I have implemented the web cam capture using the dshownet wrapper. The above code was there in the Form1.cs file. Many Thanks ...

Overhead of times() system call - relative to file operations

What is the relative overhead of calling times() versus file operations like reading a line fread(). I realize this likely differs from OS to OS and depends on how long the line is, where the file is located, if it's really a pipe that's blocked (it's not), etc. Most likely the file is not local but is on a mounted NFS drive somewhere ...

how to add serial key to client system when he visit our website.

i want to add 3 serial key to client system using httpcookie when he visited my website my website off course in asp.net MVC but serial key is different different not same. when i add a 4th cookie then 1 key is automatically deleted. how i can do this. when user want to see then he can see recent 3 key. Are you know how to add thi...

PHP system() help no simple commands work

I am trying to run a shell from one of my controllers in a PHP codeigniter applications, I am trying to run the file /x/sh/xpay4.sh however I just get 127 returned to the screen, I can even use basic commands like ls or pwd can any suggest why this would be, I thought it might be safe_mode when I ini_get('safe_mode') it returns 1 ...

How to increase the limit of "maximum open files" in C on Mac OS X

The default limit for the max open files on Mac OS X is 256 (ulimit -n) and my application needs about 400 file handlers. I tried to change the limit with setrlimit() but even if the function executes correctly, i'm still limited to 256. Here is the test program I use: #include <stdio.h> #include <sys/resource.h> main() { struct rl...

Objective C error: Passing argument 1 of 'setStringValue:' from incompatible pointer type

Ok here is part of the code that is causing the error: char charlieReturn[10000]; charlieReturn[10000] = system("osascript /applications/jarvis/scripts/getTextCharlieResponce.scpt"); self.charlieOutput.stringValue = charlieReturn; The getTextCharlieResponce.scpt returns something like this: "Hi my name is charlie" and maybe som...

GPU Chipset Detection

Seeking most efficient method for retrieving the GPU model in Objective-C or Carbon. I want to avoid using system_profiler because it is slow, but if it comes down to that I am willing to use it, but I wanna exhaust other options first. ...

Executing system command in Vala

Hi. I would like to execute a command (like ls) in Vala, like the Python os.system function, or, better, the popen function. Any idea ? ...

How to listen to dll function calls

Hello, is there any way to "listen" to when a function of a dll is called? I would like to know what functions of a dll is called and the parameters etc.... is it possible? thanks! ...

Calling (or running) a simulation software from Matlab

I have run simulations on software (named CMG) using command prompt. The command prompt works well in all respect of running the software as well as generating reports and output files. To generate an ouput file (.rwo format) containing the desired result, we have to run the executable of the report program which uses a parameter file (....

Information about computer in python

Hi, How would i go about gathering information about a system in python? Seems most of the commands are made for Unix... Are there any options in windows? Thanks, Jake. ...

How does a stack memory increase?

Hello, In a typical C program, the linux kernel provides 84K - ~100K of memory. How does the kernel allocate more memory for the stack when the process uses the given memory. IMO when the process takes up all the memory of the stack and now uses the next contiguous memory, ideally it should page fault and then the kernel handles the p...

Running Linux system commands from Ruby script

I have the following Ruby script that creates a Debian package, which works fine: #!/usr/bin/ruby dest = "#{File.dirname(__FILE__)}/../build" package = "foo" [ "cd #{dest} &" part of each command? ...

Relocating /proc/proc_id/ kind of directories in linux

I am writing a daemon in c++ on linux which would launch many processes. I'm considering a scenario when the daemon itself is killed. On restarting the daemon, I would like to kill all other processes launched by this daemon. Ideally I would like all the processes created by this daemon to die if it is killed. I'm considering a scenar...