1
vote
1answer
11 views
How to preload custom colors in SWT ColorDialog
Hi all,
my application users the SWT Color Cell Editor to set a color property. This class in turn users the native color dialog - which offers preset and custom colors.
My users …
-6
votes
2answers
165 views
Can a java class member variable decleared as `native`?
For instance, is the following legal
public class Foo {
private native int bar;
}
0
votes
7answers
225 views
Visual Studio switches from disassembler to source each time I step
On one of my two computers I see following behaviour:
Each time I press F10 (Step over) or F11 (Step Into) in the disassembler window, the focus is switched to the source view, re …
1
vote
4answers
49 views
Java Problem “UnsatisfiedLinkError”
I made a simple java program that sends bytes to the parallel port, which uses a .dll along with two other classes (pPort.java and ioPort.java) to accomplish it, and it works perfe …
1
vote
2answers
56 views
How to close iphone Safari window before launching native app?
Easy enough to register a custom protocol handler so that a native app gets launched by a URL in Safari. However, doing this leaves the current browser window open. If the app th …
2
votes
7answers
226 views
C# without .NET Framework
Writing fast native applications, with API calls and etc, in a modern cross platform programming language like C# would be awesome, wouldn't it? For example if you want to write a …
1
vote
3answers
89 views
Writing a native language compiler.
I've to implement my custom native-compiled Windows programming language. Is there an easier way then translating it to ASM, or translating it to C/C++ and then use a C/C++ compile …
3
votes
4answers
232 views
Use JNI instead of JNA to call native code?
JNA seems a fair bit easier to use to call native code compared to JNI. In what cases would you use JNI over JNA?
1
vote
3answers
68 views
how to invoke a iphone native application from webview.
i have a application which has 2 parts one is a webview and other is a native iphone application.
I want to invoke a native iphone application from a website inside
a webview.
1
vote
3answers
122 views
Is there any native DLL export functions viewer?
Is there any free native Windows DLL export functions viewer, which shows the function name, and a list of their parameters?
Thanks.
1
vote
2answers
68 views
Execute native code via JNI/DLL or EXE?
We have a native app that we can access via JNI->DLL or by invoking an EXE with command line parameters. Which would be the best approach?
We will be invoking this method about 1 …
0
votes
3answers
79 views
How to control the memory usage of processes spawned by a JVM
I am coding an application that creates JVMs and needs to control the memory usage of the processes spawned by the JVM.
0
votes
1answer
128 views
C# Interrupting native threads
Hello *,
I am currently investigating how Thread.Interrupt plays together with P/Invoke or native calls. I have read in MSDN that it is not possible to abort (Thread.Abort) a thre …
1
vote
5answers
162 views
Programably make and play a sound through speakers C++
I'm making a game in native vc++ (not .Net)
I'm looking for a way to play a noise (maybe 8 bit or something) through the real speakers (not internal). I know about PlaySound, but …
1
vote
3answers
106 views
Change repeat key threshold c++
I'm building a c++ tetris game (not c++ .Net). I feel my controls are weird. I want to make it so that when user presses one of the arrow keys, about 10ms of holding it down will s …
