Slugo's Q&A profile
Visual C# Error moving a form
I have created a nonrectangular form I have introduced the MSDN instruction in my application to move the form : http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbtskCreatingNon-StandardShapedWindowsForms.asp But when I have the mouse on the form area, the form is "runnig" and I cannot do nothing.Look at the code: public partial class Style_MainWindow : Form { // Chestii de la Visual C# public ...Show All
Visual C++ Need a good book on Visual C++ .NET
Hi, I am new to visual C++ .NET and could anyone suggest which book shall I follow to grash things Thanks ..man... may be i should be put the question some thing like ths.. hw difficult it is to convert the application developed to VC++ .NET to Visual C++ 2005 Express... application... ...Show All
Software Development for Windows Vista duplicate ruleconditionsattribute
hello. while building exercise 3 code of the hand on labs i'm getting an error which says "Duplicate System.Workflow.Activities.Rules.RuleConditionsAttribute attribute". i've tried rebuilding the owrkflow by using the code only option. now i get another error: activity XXX validationfailed: can not find the condition autoapprovecondition. check if the condition is defined in the conditions file btw, i've checked and in both cases there's a ...Show All
Visual C++ Keyboard input for DLL
I can bring in keyboard inputs to forms but how do I do it for a formless DLL Setup a Keyboard hook: http://www.codeproject.com/dll/keyboardhook.asp Regards, -chris ...Show All
SQL Server sql server 2005
Hi, I am trying to script the creation of the Stored Procedures. But can not get the script to have the bits for if exists then drop bit. Thanks I'm not 100% sure, but i thought this was a bug with RTM version, and might be fixed in SP1. I'll double-check tomorrow. ...Show All
Smart Device Development Catching unhandled/background exceptions especially in HttpWebRequest
Hi all, A part of my code calls the object HttpWebRequest to send data to a webserver. However sometimes I encounter System.net.socket exception even when I already put my code inside a try-catch statement. I understand that sometimes there are additional background threads when calling some objects such as HttpWebRequest and they might be the one the threw the exception. My question is is there a way for me to handle these exceptions Is there a ...Show All
Visual Studio Team System mstest with custom test type and metadata(vsmdi) file?
I'm trying to use mstest.exe to run a test from the commandline. The test was created as a custom test type that I have created via the extensibility SDK. I've done a lot of investigation and here's the results: 1) inside VS I can run the custom test fine. 2) I can run the custom test fine using the /testcontainer: option of mstest.exe. 3) I can run a generic test using the same vsmdi file with mstest.exe. 4) trying to run the custom ...Show All
SQL Server NS 2.0 SP1 Install Problem
What could cause the NS 2.0 SP1 installer to think that a qualified version of SQL Server 2000 is not installed and available I'm trying to install NS 2.0 SP1. The current config is: - Windows 2003 Server (Standard Edition) with SP1 - SQL Server 2000 (Developer Edition) with SP4 - Analysis Services 2000 (Developer Edition) with SP4 - Reporting Services 2000 (Developer Edition) with SP2 - Windows Sharepoint Services 2.0 with SP2 - Of ...Show All
Visual Studio How should I deploy additional binaries?
I have binaries that make up the framework for which I am providing guidance. What's the best way to deploy those binaries with my guidance package so that I have one msi per functional area that installs the guidance and the corresponding binaries Thanks! It largely depends on the deployment strategy for your framework. If you want to version the framework independently of the package, and that framewor ...Show All
Visual Studio Express Editions HELLPP pleeasee!!!!
how would i show a form in a different user account lets say i have formmessage.vb and i want it to show itself [formmessage.show()] how do i make sure that it shows itself in a user account different than mine lets say im Owner and the windows xp user account i want to send it to is Guest how do i show the form in Guest if they are logged on hi, Could you tell us when would you like to invok ...Show All
Visual C++ /NXCOMPAT without VC8
We recently fixed all the bugs in our games with self-modifying code that didn't set the PAGE_EXECUTE* flags. We now want to mark our EXE files as being compatible with Data Execution Prevention. This is because there have been recent bugs found in our code to allow the execution of data. Since we cannot find every single bug, we want to protect our users as much as possible. How can we mark our EXEs as DEP-compatible without V ...Show All
Windows Forms How to install to a 3rd party remote server?
Is there a way that the TaskVision server can be deployed to a 3rd party web-hosting facility Obviously I cannot execute the SQL scripts on someone elses server, and I don't have SQL server nor MSDE installed on my dev machine - I use&nbs ...Show All
Visual Basic Timer.Tick and Graphics
Well, code is: Private grafika As Graphics Private czas As Windows.Forms.Timer = Nothing private dl as integer = 0 Public Sub pc1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint Dim pen_draw As New Pen(_kolor_obw) e.Graphics.DrawRectangle(pen_draw, 0, 0, s.Width - 1, s.Height - 1) dim tymbr as ... e.Graphics.FillRectangle(tymbr, 1, 1, s.Width - 2, s.Height - 2) Dim buf ...Show All
Visual Studio Team System Issue with playing back Web Requests with Body set to XML (Querystring parameters fail also) fails
I had to use Fiddler to record my scripts because Visual Studio didn't support recording ActiveX controls. Fiddler was placing query string parameters in the webtest file it creates in the StringBody element which loads into the Web Test Request Body property through an StringHTTPBody object in Visual Studio. When this was executed the HTTP response code was successful (200) but the response XML told us the query string parameters whe ...Show All
Visual C++ retrieving commandline arguments
Hallo, I am invoking a programm developed using visual c++ from another program which is also developed using vc++. i call from Prog A using the function STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory( &si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory( &pi, sizeof(pi) ); ::CreateProcess("B.exe"," /mod", NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)==0) Now my question is how to retrieve or using which ...Show All
