I have an application that runs in the background o开发者_如何学编程n a Windows OS, and I want to add HotKeys or shortcuts to access functionality.Since the application will capture system wide key pr
I would like to determine the tab width used in source files indented with spaces. This is not hard for files with particularly regular indentation, where the leading spaces are only used for indenta
How is parallel programming different with respect to Asynchronous programming? I know async programming is used to do work in background threads/workers or waiting for
We have an interesting problem.We are a printing company that allows users to print templated material based on various 3rd party sources.An example would be looking up the details of a house for sale
I have an application that deals with data in the following structure: struct Message { inttime; string name;
This is my code: data INDAT8; set INDAT6; Array myarray{24,27}; goodgroups=0; do i=2 to 24 by 2; do j=2 to 27;
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
It may be sound s开发者_Python百科illy. But trust me, there are lots of programmers around with out knowing the difference. i don\'t find any clear and simple way of explanation for this question in g
I have an enum in code enum EventType { Run = 1, Stop = 2, } 开发者_C百科 I have a table in my database
Lately I\'ve been struggling with some recurrent design problem which I don\'t know how to solve elegantly.