Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
608 views

Compile a C++ program with only dependency on kernel32.dll and user32.dll?

I'm working with Visual Studio 2005. I want to compile a simple program that will work with any Windows 32bit version independent of what c++ runtime library version installed. This program will ...
7
votes
2answers
95 views

How to run multiple Perl installs on one machine?

Is it possible to run multiple installs of Perl (in "containers") on one machine? Reason is that I have different Perl-based server side web applications and wish to schedule updates to them ...
5
votes
1answer
468 views

Points moving along a curve within MATLAB

I have managed to edit a piece of code that was given to me in order to show a point moving along a curve. I am trying to find a way to edit this in order to create two independent points moving ...
5
votes
2answers
174 views

How can I ensure that nested transactions are committed independently of each other?

If I have a stored procedure that executes another stored procedure several times with different arguments, is it possible to have each of these calls commit independently of the others? In other ...
5
votes
2answers
222 views

Is there a way to determine that a .a or .so library has been compiled as position indepenent code?

I am getting a linking error when compiling the numpy library against lapack indicating I need to compile lapack with -fPIC. I thought I had done just that. Is there a way to determine that the ...
4
votes
2answers
188 views

Maximum Independent Set Algorithm

I don't believe there exists an algorithm for finding the maximum independent vertex set in a bipartite graph other than the brute force method of finding the maximum among all possible independent ...
2
votes
1answer
73 views

Is it possible to change the glass color only for my own forms?

I would like to create my application forms in the color independent from the user's color settings of the Aero. Is it possible to colorize my forms with the selected color without affecting the ...
2
votes
3answers
139 views

Independent CSS for Fancybox

I have a page from which I call fancybox which contains some html template (something like an email template). The problem is that all CSS from the main page affects the content in the fancybox and ...
2
votes
3answers
253 views

Monte carlo on GPU

Today I had a talk with a friend of mine told me he tries to make some monte carlo simulations using GPU. What was interesting he told me that he wanted to draw numbers randomly on different ...
2
votes
2answers
637 views

Trying to load position independent code on cortex-m3

I have an embedded application which will have a bootloader which will decide to run 1 of two applications directly from internal flash. I am trying to make these apps position independent so that ...
1
vote
2answers
35 views

Is it possible to guarantee that one table cant have any relation with other table (SQL server 2008)?

I'm trying to create a database where some tables must be completely independent of some others. I'm grouping them in different schemas (lets say...one is for cars, other for bikes, etc) so I can ...
1
vote
2answers
124 views

Android independent services how to?

I was wondering if there is a way to create a service that will run as it's own process independent of an activity. I would want to service to run in the foreground so it would not be killed and also ...
1
vote
2answers
215 views

how to design a java matrix class implementation independent

I need to use a matrix class in my application for operations like Eigenvalue decomposition,LUDecomposition as well as normal matrix ops like multiplication,addition ,transposition etc. I decided to ...
1
vote
1answer
708 views

how to make sis file qt independent

when I make a program with qt and try to install that .sis file to my cell phone, my phone says qt component is missing, and qt mobility is missing. Ok when I install those to my phone I can run the ...
1
vote
1answer
409 views

visual styles independent drawing

Using C# winforms, i want to create custom controls that looks like the real ones. There are a lot of classes that can be used to draw controls that looks like the real ones: ControlPaint, ...
0
votes
0answers
74 views

Xcode, go to an independent view controller using a button or is a tab bar required?

I'm confused about independent view controllers. I need an independent view so that I can control the rotations separate from my other view (View A) and parent view (Splashview). Can this be done by ...
0
votes
1answer
48 views

how to built platform independent business logic [closed]

please any one give quick response. how to built business logic which work on .Net as well as Java platform
0
votes
1answer
39 views

Create a .NET subapplication with different version than parent

I have a website configured in .NET 2.0, and I cannot change it because of compatibility problems. Inside that website, I have other website in 4.0. So let's think something like this: RootWebsite ...
0
votes
3answers
180 views

C: Spawn an independent child

How can you use C to spawn an independent child process that goes about its business without thinking about the father? I want to spawn several processes and shortly after they have been created they ...
0
votes
1answer
63 views

how to Forward email using independent soft dll

Please let me know, how to forward a email from exchange server using independent soft dll. I like to forward email without using "EWS". Thanks, Ram
0
votes
1answer
358 views

Move relative div independently while scrolling?

I am trying to move down a relative div from javascript (jquery) when the page is scrolled as you might have seen in machable which moves the social buttons when the page is scrolled. But when I try ...
0
votes
1answer
21 views

Application and DLL using Direct3D independently

If an application which is using Direct3D to draw graphics loads a DLL that wants to do the same (although independently, in a different window), is that safe? Also, can two IDirect3DDevice9's ...
0
votes
2answers
38 views

Can Two CVS Trees (independent CVS Trees) be merged? How?

We had a CVS tree cvsrootv6 which uses Java 1.4 and Websphere 6.0. Now because we are upgrading our systems we copied the whole CVS tree i.e cvsrootv6 and make a new independent tree cvsrootv7 for ...
0
votes
1answer
815 views

My Spinner Widgets look different on different devices. How can I define a own Spinner that looks the same on all handsets?

I use this code to generate a spinner in my app: subCatAdapter = new ArrayAdapter<Subcategory>(this, android.R.layout.simple_spinner_item, subCategories); ...