Hi Geeks,
I have to use the third party static library for my qt application to run on windows. The third party provides me a .lib and .h file for use. These libraries are compiled with MSVC compiler.
My qt Creator is using MinGW compiler to compile my application. I copied the .h and .lib file to my qt project directory and then added those in…
If you have to build a flow of a Use-case by drawing each Interface Diagram.
Then you would start with a Diagram like say "login".
But after the login page, no mather wich page you choose except the "logout" page,
you always have your navigation bar right ? So all the options in the navigation bar?
Like account page , personal page, etc...
Do…
I converted all my other projects fine from VS 2008 to 2010 and they run great. There is one project however for some reason after converting, when I try to run one of the .aspx pages in it, I get nothing...no error, just that it cannot display the page.
Nothing has changed. The path is still the same, and the IIS website is still the same. I…
I am trying to make a simple server thread in QT to accept a connection, however although the server is listening (I can connect with my test app) I can't get the newConnection() signal to be acted on.
Any help as to what I'm missing here would be much appreciated!
class CServerThread : public QThread
{
Q_OBJECT
protected:
void run();
…
im trying to embed flash in my program by placing flash.ocx in my app's folder without having to register it. i found DirectCom.dll and with this code i can show the right version of flash.
but how do i show it on the form and load the movie?
Private Declare Function GetInstanceOld Lib "DirectCom" Alias "GETINSTANCE" (FName As String, ClassName…
I always find myself needing to enclose a block of code in curly braces { }, but unfortunately that isn't included in the C# surround code snippets, which seems to be an oversight. I couldn't find anything on building your own surround snippets either (just other kinds of snippets).
I am actually running Resharper too, but it doesn't seem to…
I make a compiler of Tiger and I want integrate with VS2008, but I read a lot of stuff and don't say very well how i can made that. What is the type of the project that i need to make? How i register my Language/compiler in VS2008, I know that i need install the SDK, I know litle thing that i need to do but the steps more important, like What…
HI, Just ran into a problem. How to I change a picturebox's picture from within a different header file.
If I do it in the same .h file as the Form I am working on I use:
sq1-Image = bi; (which loads in a bitmap)
but when I do it from another header (i've included the correct header file), I get
"sq1 is an undeclared identifier"
and
"left…
HI Folks,
I have a threaded C++ program where up to three threads are calling select on a three separate socket descriptors waiting for data to become available. Each thread handles one socket and adds it to the readfds with a timeout of 300 seconds. After select returns if there is data available I'm calling recv to read it.
Is there…
At work we have a C# solution with over 80 projects. Is it possible in VS 2010 to automatically stop compilation as soon as an error is encountered rather than the default behaviour which is to continue as far as possible and display a list of errors in the error window?
I'm happy for it to stop either as soon as an error is encountered…
Clean Windows 7 x64 system. Try to install VS 2010 Ultimate and the installation breaks with error:
CRootComponent::Install(): Cannot install; setup files failed verification.
What could be the problem on a clean Win7???
ResultBox1-Text = (sin(TextBox1-Text)) * TextBox2-Text
That is what i would like to work, but im dealing with Strings
I cant seem to convert the strings, do the trig, and convert back to string for displaying properly... anyone with an example?
I'm looking for a good profiler for vs2008 professional edition, free or reasonably priced. I've already checked previous posts and tried about 8 profilers, but most of them are too basic or too detailed. Kindly suggest something, my requirements are as follows:
It can be compiled, so that its well integrated with my application. I'm…
Hi, I would like to ask for a recommendation on offline form format which user can bring around. Once done, they will upload the file to the server and data will be extracted from there.
We are currently looking at Word and Excel 2003 since all users have it on their machine but it seems that using interops on server is something to…
Hi,
I am attempting to reference a sub-object in a field expression in a studio 2010 report.
This used to work in prior versions.
When account references another object with properties the following used to work.
=Fields!Account.Value.Name
(Name is a property of the child object, Account is the parent object)
The same expression…
I have used a user control as a base class (let's call it BaseUC) with 3 labels (in 3 lines) on it (they are set as protected).
And there is another user control that inherits from it (InheritedUC). I have added two more labels in InheritedUC, which are positioned between the base's labels (so there are 5 lines).
Everything is…
I am about to give up debugging SMTP servers to send email... My code is the following
private void SendMail()
{
SmtpClient mailClient = new SmtpClient("smtp.mail.yahoo.com", 465);
mailClient.EnableSsl = true;
MailMessage message = new MailMessage();
message.To.Add("mymail@yahoo.com");
…
Is it possible to reference other projects' properties via a macro within a build event?
For example:
"Tool1" outputs to directory ..\..\bin\Release
"Component1" uses "Tool1" in its post-buildevent
To get to "Tool1", "Component1"'s project must do something like $(SolutionDir)bin\Release
This requires that Tool1 always…
I have a text file.
I read each line with sr.readline();
as i read that line, i want to search for it in a List that it should have been added to previously, then add it to a NEW list. How do i do this?
I would like to generate permutations of string words that are inputted from a file. I know the count and was wondering if there is an easy way to do this using an arraylist.
When I try to "Build" a project it says:
The operation could not be completed. Unspecified error
When I try to debug the debugger says:
The debugger cannot continue the process
I really don't understand what is wrong with that? The project is fine and it compiles perfectly on VS 2008.
For example in Sketchflow add-in there is ApplicationFlowPane (derrived from PrototypingPane) which registers itself using IWindowService like this:
service.RegisterPalette(this.PaletteRegistryName, this, this.Caption, this.KeyBinding);
But i can't see where it is defined that it is docked on bottom pane.
Before…
Consider the following simple application: a windows form created by a "new C# windows application" sequence in VS that was modified in a following way:
public static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
try
{
Application.Run(new…