0
votes
2answers
112 views
Native Flash on mobile platforms?
Does anyone know if Flash will be able to run independent from the browser? I mean native apps in Flash, not just the player in a browser. The Symbian OS can do that, however I have yet to find an …
3
votes
8answers
1k views
Native VC++ using external (not project) dll reference how to specify path to dll
I have a native VC++ project that uses a dll (which is not in a project). Now, I must to put the dll in one the "Search Path Used by Windows to Locate a DLL"
link
but I don't want the dll to sit in …
5
votes
6answers
184 views
Compiling C# to Native?
I think I'm somewhat confused about compiling .NET byte-code to native code, or maybe I'm confused about the end result. So please bear with me as I try to sort through what I think I understand so …
0
votes
1answer
51 views
How a native C++ plug-in DLL can load a private assembly located in a specific directory
I have a native C++ DLL which is used as a plug-in in another application. This DLL has an embedded manifest and depends on a private assembly located in a folder external to the application. The …
0
votes
2answers
50 views
C++/CLI : Casting from unmanaged enum to managed enum
What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for …
11
votes
1answer
64 views
.NET Garbage Collection and Native Threads
It’s fairly well documented that when .NET's automatic garbage collector runs, it will temporarily pause all running managed threads associated with the application domain. What I haven't been able to …
1
vote
4answers
287 views
Converting .NET App to x86 native code
There's a program written entirely in C# that targets .NET Framework 2.0.
Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET-agnostic? I know there are …
8
votes
8answers
1k views
How do you make linux GUI’s?
My main experience is with C && C++, so I'd prefer to remain with them. I don't want to use anything like QT, GTK, or wxWidgets or any tool kits. I'd like to learn native programming and this …
1
vote
6answers
196 views
Programming languages that compile to native code and have the batteries included
What are the programming languages that compile to native code and which have provided a comprehensive library with them?
Libraries that includes functionality such as Networking, File IO, RegEx, …
1
vote
1answer
24 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 are frustrated …
1
vote
2answers
114 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 then provides a link …
0
votes
7answers
241 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, resulting in next F10 …
-7
votes
2answers
194 views
Can a java class member variable decleared as `native`?
For instance, is the following legal
public class Foo {
private native int bar;
}
1
vote
7answers
1k views
Native C/C++ code on an Android platform
Hi,
Does anybody know the answer to the following questions?
Is it possible for device manufactures can develop native C++ applications on an Android platform?
How can I develop my own native C++ …
1
vote
4answers
56 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 perfectly fine.
However, …
