Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
14answers
11k views

is “else if” faster than “switch() case”?

I'm an ex Pascal guy,currently learning C#. My question is the following: Is the code below faster than making a switch? int a = 5; if (a == 1) { .... } else if(a == 2) ...
19
votes
11answers
3k 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 ...
18
votes
5answers
15k views

Repeating background image in native iPhone app

Short of putting a UIWebView as the back-most layer in my nib file, how can I add a repeating background image to an iPhone app (like the corduroy look in the background of a grouped UITableView)? Do ...
17
votes
6answers
3k views

Why is System.arraycopy native in Java?

I was surprised to see in the Java source that System.arraycopy is a native method. Of course the reason is because it's faster. But what native tricks is the code able to employ that make it ...
16
votes
6answers
7k 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?
16
votes
19answers
28k views

What is the best C++ book for an intermediate to expert developer? [closed]

Possible Duplicate: The Definitive C++ Book Guide and List I'm looking to pick up a good C++ book. I have been programming for many years in managed languages and I will me making the jump ...
15
votes
9answers
498 views

Why isn't more Java software compiled natively?

I realize the benefits of bytecode vs. native code (portability). But say you always know that your code will run on a x86 architecture, why not then compile for x86 and get the performance ...
14
votes
7answers
478 views

Am I coding for an OS or the Processor?

It is said that by using C/C++, one can write 'native' programs - that run on the platform. I am confused about what is considered native - the processor architecture or the OS version? For example: ...
14
votes
1answer
466 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 ...
12
votes
1answer
235 views

C# .NET User Control inside native app. Resource chain problems

I am wrapping up an MFC extension DLL (MFCXDLL_2) to make its functionality available for C# programmers. The wrapper is a “Regular DLL using shared MFC DLL” with “Common Language Runtime Support ...
12
votes
3answers
1k views

Why does Eclipse use a native launcher?

Eclipse the IDE is one of the best examples of a huge desktop application written in Java. Most Java applications I've seen usually rely on a batch or shell script to build a string with the class ...
10
votes
7answers
5k 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 ...
9
votes
3answers
250 views

How to write dead simple native SERVER program (not app) for Android devices?

First of all, I believe, it's not a duplicate question. I don't want to write a native app with NDK, I just want to use Android device as a cheap Linux server. Server, in this context, means a ...
9
votes
2answers
872 views

Camera focus distances

I'm trying to read the focus distance (distance of subject in a photo) from an Android camera. I keep getting 0 for all focus distances on my HTC Desire even when it correctly autofocuses. Here's the ...
9
votes
7answers
2k views

Is there some sort of secure local storage on Windows?

I was thinking of making a small tool. It is not important what the tool will do. The important thing, is that the tool will need to store some sensitive information on the user's HDD. EDIT: The ...
8
votes
3answers
3k views

Android - failure on loading library

I have a similar problem to this question, but slightly different. I have compiled a .so library to use with JNI. Because it is large (15 MB), I am putting it on the SDCard instead of in the ...
8
votes
3answers
534 views

How is application virtualization implemented?

I am trying to understand how software like App-V and sandboxie (http://www.sandboxie.com/) work. But for the life of me, I can't think of anything that could make this possible. How do they intercept ...
8
votes
2answers
369 views

How can I set the /baseaddress to a “good” value?

We have a project with many dll files which get loaded when the application starts. The baseaddresses of the dll files do overlap so that the memory image gets relocated. Is there a possibility to ...
8
votes
16answers
923 views

Are .NET languages really making any kind of dent in consumer desktop applications?

Do you write consumer desktop applications with .NET languages? If so what type? My impression is that most consumer desktop applications are still native compiled applications in C, C++ and the ...
7
votes
2answers
216 views

Pure java implementation of the java.lang.Math class

I just downloaded the openjdk source and came to the realization that nearly all of the java.lang.Math class was implemented in native c/c++ code. I was wondering if there were any implementations ...
7
votes
1answer
563 views

Is there a GUI framework that uses HTML and CSS to build GUIs?

I mean, other than a browser, of course -- I'm talking about building native applications with HTML and CSS -- not web applications, but real native GUIs. I wonder if such a thing exists? And what ...
7
votes
6answers
310 views

Why does a native library use 1.5 times more memory when used by java as when used by a C-Programm under linux?

I've written a library in C which consumes a lot of memory (millions of small blocks). I've written a c program which uses this library. And I've written a java program which uses the same library. ...
7
votes
6answers
4k views

How do I rename a DLL but still allow the EXE to find it?

We have a DLL which is produced in house, and for which we have the associated static LIB of stubs. We also have an EXE which uses this DLL using the simple method of statically linking to the DLL's ...
7
votes
4answers
1k views

Can a .NET app be complied to native

Just wondering if a .NET app can be compiled down to native machine code ahead of time? I'm not planning on doing so if you can, I'm just curious. Thanks
6
votes
1answer
109 views

creating a native executable using C#

What is a way I can a native EXE using C#, I want to compile a basic EXE which will run without the need for the .net framework. I've heard of ngen.exe can anyone give me examples of ngen.exe or any ...
6
votes
2answers
220 views

Android - native sockets not removing 3G-sleep-mode on first attempt

I have a really annoying problem. What happens is I have an application which is using native sockets to send data over TCP. When I first launch my application and send data over the sockets, nothing ...
6
votes
4answers
621 views

Android NDK limitations?

I have a question about the limitations of what you can do in native code on the Android platform. Basically I have developed a library in native C code that uses UDP sockets for SIP/RTP and uses ...
6
votes
1answer
354 views

Visual Studio C++: Debug Visualizer use member method / function call in preview?

Using Visual Studio 2010 with native C++. When editing autoexp.dat, is it possible to use the results of a method call in a debug visualizer preview? For example, if my class is Person how can I do ...
6
votes
3answers
249 views

What to do when FreeLibrary API call fails?

Question I have a third-party DLL that throws an unhandled exception when attempting to unload it from my native C application. This results in the call to FreeLibrary failing, and the module ...
6
votes
3answers
626 views

How to use a .Net Assembly in Delphi without registering it in the GAC or COM?

i have a simple task: is it possible to write a Delphi DLL and put a .Net Assembly (with only one interface with 4 methods and one class implementing the interface) besides it and call it from the ...
6
votes
1answer
955 views

How to compile ocaml to native code

i'm really interested learning ocaml, it fast (they said it could be compiled to native code) and it's functional. So i tried to code something easy like enabling mysql event scheduler. #load ...
6
votes
6answers
779 views

How do I find out if a .NET assembly contains unmanaged code?

.NET assemblies that contain a mixture of managed and unmanaged code cannot be ILMerged with other assemblies. How can I verify if a given .NET assembly contains purely managed code, or a mix of ...
6
votes
2answers
4k 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 ...
6
votes
4answers
3k 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.
6
votes
5answers
3k views

Is it possible to share an enum declaration between C# and unmanaged C++?

Is there a way to share an enum definition between native (unmanaged) C++ and (managed) C#? I have the following enum used in completely unmanaged code: enum MyEnum { myVal1, myVal2 }; Our ...
6
votes
8answers
854 views

Does A Program that is written with the Microsoft .NET framework compile/execute native code?

Newb question: Does a Program that is written with the Microsoft .NET framework compile/execute native code? I don't mean if there is a way not to have to install the .net framework on a machine. ...
6
votes
9answers
779 views

Will Learning C++ Help for Building Fast/No-Additional-Requirements Desktop Applications?

Will learning C++ help me build native applications with good speed? Will it help me as a programmer, and what are the other benefits? The reason why I want to learn C++ is because I'm disappointed ...
5
votes
3answers
247 views

how to map callback Function with Java native access (JNA)

How can i set up windows hook with WH_FOREGROUNDIDLE and the following call back Functions DWORD CALLBACK ForegroundIdleProc( __in int code, DWORD wParam, LONG lParam ); I am trying to detect when ...
5
votes
3answers
267 views

is java byte the same as C# byte?

Native method from dll works in java if the input parameter is array of bytes - byte[]. If we use the same method from c# it throws EntryPointNotFoundException. Is that because of byte[] in java and ...
5
votes
5answers
325 views

RVM vs native installation of ruby

I was wondering if there is any downsides from using rvm in a production server. What should I prefer, rvm or native installation and why?
5
votes
2answers
165 views

Least annoying way to check auto updates in native app

What would be the best approach? So far I can think of: Super small WinMain exe in HKLM\Run that checks, say, twice a day Windows service that checks, say, twice a day Scheduled tasks (can't seem ...
5
votes
3answers
4k views

Android Native debug (ndk-gdb) on HTC Desire: run-as flaw?

Dear all, I'm trying to perform native code debug on my HTC Desire for my Android project. The project is made of a thin layer of JNI wrapper and the main chunk in C++, compiled using ndk-build. The ...
5
votes
3answers
731 views

Lightweight C/C++ GUI Library with Native Look & Feel

There's many pages on C/C++ GUI libraries out there, but I've had a really hard time finding ones that have a native look and native feel. I've taken a look at GTk+, and the problem is, while those ...
5
votes
2answers
2k views

List of supported native code of Android phones

Is there any list of Android phones and their supported native code? For example I want to know which phones support only armeabi and which support armeabi-v7a. The latter is important because I'm ...
5
votes
3answers
515 views

Which is better/safer to use: HandleRef or IntPtr (newer source code from Microsoft no longer uses HandleRef)

For example, in the old .NET Framework 2.0 Source Code (Windows Forms, Visual Studio 2005 - Whidbey), the GetClientRect function was defined using HandleRef: [DllImport(ExternDll.User32, ...
5
votes
1answer
1k views

Generate C# DLLImport declarations from a native dll

Do you know a soft which automatically generates C# code (with [DllImport] attributes in .cs) from a native DLL in order to use this DLL in a C# code?
5
votes
5answers
6k views

Turning Sencha Touch-based app into a true native iPhone app?

As I understand, Sencha Touch is just a javascript library that lets you create websites that respond to multitouch and other features you find in native iPhone apps. So... Your end result is accessed ...
5
votes
2answers
1k views

Where to find source code for java.lang native methods?

I'm vaguely familiar with the JNI, and I'm curious to see my machine-specific implementation for some native methods in the java.lang package. Thread#currentThread(), for example. I've found a bunch ...
5
votes
4answers
1k views

Accessing Microsoft.Win32.UnsafeNativeMethods?

Microsoft has a very nice Windows API wrapper included in .NET framework. It is stored in Microsoft.Win32.UnsafeNativeMethods , Microsoft.Win32.SafeNativeMethods and ...
5
votes
4answers
3k 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 ...

1 2 3 4 5 14