Hi all,
I need to compile C++ code in windows application and append the results (Output or execution errors) on rich text box. I use CodeDomProvider Class but I unable to compile the code using C++ language. Please Help.......... Need Proper answer in easy way....
A quick question, for a quick answer (since I'm not finding any):
Is there a way to change the font of the section's title (given by titleForSection) in iPhone?
Thanks a lot!
Hi,
I am looking for some frameworks that can be used to collect usage information for Windows desktop application and analyze it. For example, I would like to be able to answer questions like (a) how many times do people use this application in a day (b) which are their favorite menu items, etc.
I looked briefly at Google Analytics and Omniture SiteCatalyst but they seem to work only on web applications.
Thanks
SD
I was asked this question recently during my job interview, and I couldn't answer it. So, what is the most used pattern in java.io and how is it used? What are other patterns used in common java libraries?
Apologies if I have missed something obvious here but having gone through the documentation, forums and googled for a number of hours, I just can't find a definitive answer to the following questions:
How does the WebApplicationContext.GetObject() method handle concurrent requests? Are the requests serialized or executed in parallel? Is there any performance data available to demonstrate how it behaves under load?
Thanks in advance for your help,
Andrew
I'm looking for an smtp service that essentially obeys the RFC, except rather than sending mail it simply logs to a file
[date] sent mail to <address>
Or whatever. I can bash this together with the bare minimum of functionality I need in python in about half an hour I reckon but if there's an existing project that works better I'd rather use that.
The reason for needing it is debugging an app that keeps sending 7* the amount of mail it's supposed to.
Slightly offtopic, but if there isn't already such a project, and I write it, is this something other people would use? If I publish the source will it get used?
EDIT: And already asked: http://stackoverflow.com/questions/1006650/dummy-smtp-server-for-testing-apps-that-send-email
I have searched on this topic a lot but I am not able to understand how and where OSI layers (Application, Presentation, Session, Transport, Network, Datalink, Physical) come into picture in the whole process of opening a webpage in browser.
I have read this - http://stackoverflow.com/questions/2092527/what-happens-when-you-type-in-a-url-in-browser?lq=1
and I know all the functions of all the layers that are there in OSI model.
Also, do we use OSI model or TCP/IP in the whole process?
Basically I am having problem linking all the things together. And please forgive me if there are resources out there that explain this concept. You can definitely point to them.
I am working on a project that needs to add selected numbers together and show answer. so if I have say 10 textfields with numbers and the user picks three of them I want to show that total.
thank you
The answer to this may be obvious but how do you save an object, in grails, that has a composite id. I have an object that has a composite id including a long and a date and I am trying to save an instance of the object from the update method of another classes controller, and using (object).save() isn't working. Any tips or suggestions?
I want to build rest web services in java. can some body tell me what are the software and hardware requirements for that?
I want to know it in sense like one computer, which one database and which one server and if any other because i want to use these web services globally and want to post JSON in request and also want to get response in json for an android app. thanx, any answer would be a great help for me.
I've been looking all over the place, but I haven't landed an answer yet. Is the current jQuery UI 1.8-1.8.2 supports Firefox 3+? I have 3.6.3 installed, but the example on their websites works for my IE7, IE8, Chrome, but not Firefox.
http://jqueryui.com/demos/sortable/#connect-lists
I tried to look this up on MSDN, but couldn't get a straight answer.
It says:
The .NET Compact Framework for Xbox
360 implements a subset of the .NET
Compact Framework, and has been
optimized to take advantage of and
expose the power of the Xbox 360.
What exactly is the subset? Which version of the framework? 3.5? 2.0?
How do you access a file to use in unit tests? (Every time I have asked with more specific information I cannot get ANYONE to answer. This is as freaking basic as it gets. HELLO? IS ANYONE OUT THERE?)
Is it possible to compile C++ program into some intermediate stage (similar to bytecode in java) where the output is platform independent and than later compile/link at runtime to run in native (platform dependent) code?
If answer is no, why?
Hi,
I am beginning in Blackberry development.
I want to add two fields in a vertical field manager. I want the first one to be align on the left and the second one (on the second line) on the right. I don't find a simple answer to this question.
Thanks a lot.
Hello,
I want to know how to add some sort of emblem or badge to a specific file. Just like drop box does to a specific file when it is doing a sync.
I found that the guys from drop box are able to do that on linux by using libnautilus package. But I need to do so on windows and haven't been able to find an answer.
Will the solution change from one windows version to other?
best regards
hi
I am writing a C# Windows application program and I'm using an add-on for creating chart in it,but when I run this program on another windows which has .net framework but not that package it does not work and give me exception.
I want to know how can I correct this problem even with setup file?
and if the answer is setup file then how should I do that?
thank you
I sweated over the question above. The answer I'm going to supply took me a while to piece together, but it still seems hopelessly primitive and hacky compared to what one could do were completion to be redesigned to be less staticky. I'm almost afraid to ask if there's some good reason that completion logic seems to be completely divorced from the program it's completing for.
I saw couple of SO questions (SO) concerning SQL-server. For SQL-server there was no decent solution. All were hacks/workarounds. What about Oracle? Is it same answer (Paremeterizing each value)? Any Oracle example without LINQ would be appreciated (I have .NET 2.0).
Thanks & BR -Matti
I cloned Cocos2d-x repo from github, everything works fine but I can't find how to install the Cocos2d templates into XCode.
I saw that people were used to use this file, located at the root of the repo:
./install-templates-xcode.sh -f -u
but it looks like this script file has been removed, any help appreciated.
edit: Still no answer to this problem, even the slightest clues could help me. Are there still templates for XCode? Couldn't get answers from #cocos2d-x irc
I have the following questions concerning the differences between the four options:
What is the main difference between the four options?
Which of the above support int64_t or long long without suffix LL. I want a data type of the range 2^63 - 1
If your answer to my second question is not C(gcc 4.3.2) , whether the code I write in C(gcc 4.3.2) for C language will be valid in rest of the three options or do I have to modify something, then what will be those modifications.
Either this is a nightmare or it really does not seem to bother anyone that to increase font-size in xcode is a pain in the butt ... I googled and no one seems to have answer to this question ... please tell me its a nightmare.
I have a list of items sorted alphabetically:
list = [a,b,c,d,e,f,g,h,i,j]
I'm able to output the list in an html table horizonally like so:
| a , b , c , d |
| e , f , g , h |
| i , j , , |
What's the algorithm to create the table vertically like this:
| a , d , g , j |
| b , e , h , |
| c , f , i , |
I'm using python, but your answer can be in any language or even pseudocode.
Thanks