Sathish.Nadarajan's Q&A profile
Visual C# Syntax Error in Update Statement
Dear All, I had encountered Syntax Error in Update Statement when I execute the following code. private void UpdateNewPwd( string EmpID, string NewPwd) { string strUpdate = "Update Users SET Password = '" + NewPwd + "'" + " where EmployeeID = '" + EmpID + "'" ; string connectionString1 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + System.Windows.F ...Show All
SQL Server Time Dimension - Attribute Hierarchy
I have a Time dimension built from Dim_Time Table.Dim_Time table structure as follows : TimeId int] IDENTITY ( 1 , 1 ) Hour tinyint Minute tinyint Second tinyint TimeId Hour Minute &n ...Show All
Windows Forms How to detect acrobat reader with c# ?
How to detect if acrobat reader is installed on my machine from a winform application Thank you. i thinks you may search Reg, to find if the key existed and you may get the version of the soft ...Show All
Visual Studio Express Editions here is what i am tyring to do..........
i would like to create an application that runs in the background (doesnt have to but that is preferred) that causes my x and y axis on my mose to drift down and to the left while pressinf the left mouse button Check out the API routine SetCursorPos Private Declare Function SetCursorPos Lib "user32.dll" (ByVal x As Integer, ByVal y As integer As Integer Also if this is to work off form, check ...Show All
Visual C++ strcpy_s / strcat_s / sprintf_s
I have found out the hard way that these functions pad the output buffer to its maximum extent with character 0xfd That's great, but could the documentation say something to make it clear this happens I'd probably recommend switching even before those functions included in Standard. For other platforms you always can write wrappers yourself, e.g. #if not defined(_MSC_VER) errno_t memcpy_s( void * dest , ...Show All
Windows Forms Combobox propeties window - click any DataBindings property and get an error.
Hi, Not sure if this is a bug or not, or if it's already a known issue. Just thought I'd post and see if I could get any information. When I try to modify any DataBindings property (SelectedItem, SelectedValue etc.) by clicking on the drop down list, I get a message box that says "Microsoft Visual Studio" in the title bar and the message is "Object reference not set to an instance of an object." Here's a screen shot: ...Show All
Visual C++ _set_security_error_handler no longer declared
No longer in the CRT header files There is still a reference to it in a comment in stdlib.h. Has it been removed What's it's replacement Steve Hills NCR Corporation Ok, nice... But now, how i will find out where my program get corrupted I can't see the stack trace when the Dr. Watson show up. thanks ...Show All
Visual C++ LNK2005 from a C++/CLI dll linking against a non-CLR C++ static library
Hello all- I have some static C++ libraries that I wrote in VS2003 but which upgraded fine when i went to VS2005 Pro. In them i overload the global versions of operators new, new[], delete, and delete[]. I also use the STL and parts of boost (shared_ptr<> and weak_ptr<>) pretty heavily. They have dependencies on various windows libs (dbghelp, winsock, etc...). These static libraries have no common runtime support a ...Show All
Visual Studio Express Editions Timing issue
I would like to find out if there is a way to add a bit of time for one line of code to complete before Starting the next. I would like my textbox to display the contents of an action as in: case 4 TextBox1.Text = "My Text" ---Do Somehting here to slow the system down for about 5 seconds TheAmount = TheAmount - 50 If TheAmount <= 5000 Then MessageBox.Show("Your Amount is: " & TheAmount) End ...Show All
Windows Forms How to realize ScrollView with split view Like MFC by WinForm application
every master, How to realize ScrollView with split view Like MFC by WinForm application. could you provide a example. the splitview just like visual studio editor. I want to use it to draw a large map, so could you guid me where to draw, use panel , picturebox shortly , if I want to draw many 5 meters long curves , no flicker when the view scroll. what is the best strategy Thank you. ...Show All
Visual Studio Team System Build problem TF42004
Hello, I Have problem with Team Build. When I star building, everythink goes well, but soon as building has started I got a faild message: Team build failed to open folder \\fihel-mibsw02\TestWork\Hei\Testi2_20060607.1 . The system cannot find the specfied path. I am totally lost with this. It looks like the drop location you specified for your build type either doesn't exist, or doesn't have permissions set appropriately. Your build servi ...Show All
Visual Basic Wrong Processor Targeted
Getting a weird warning. I have three projects in a solution. All three of them reference the same ChilkatDotNet.dll and use the same general features of that component. All three projects have the same setting regarding the processor they target. However one of the three projects gives me this warning that I cannot seem to get to go away: Warning 1 Referenced assembly 'C:\Program Files\Chilkat Software Inc\Chilkat.NET\Chil ...Show All
Windows Forms What is the best way to Load/Store Form Location and Size?
Hello, What is the best way to Load/Store Form Location and Size Also what it the best method for Load/Store of other elements on a form such as a MenuStrip and ToolStrip when that are placed in a ToolStripContainer Thank you for your help, Your options are the registry, and a config file ( but the Microsoft config file stuff does not support writing ). I think it depends on how much there is, officially, ...Show All
Visual Studio Team System how to get Visual Studio 2005 Team Edition for Software Testers
Hi, all, 1. I want to know whether if I could download Team Edition for Software Testers from http://msdn.microsoft.com/subscriptions/ no matter it's RC ,Beta or evaluation version. 2. My company is MSDN Enterprise , how should I get Visual Studio 2005 Team Suite TKS! Romi I believe you can download the 180-day trial version of VSTS Team Suite from MSDN. Frank points to the correct page about the transition plan for ...Show All
Visual Studio Team System Why the "Severity" column could not been seen in the query result?
Hi all, I have a query to view the bugs, and in the column options of the query, I add "severity". When I run the query, there is no severity information shown under that column, but they do have value in the bugs detail form. What happens by the way, the bug template file bug.xml is modified a little by myself and been deployed to VFS. Thanks, Leon Hi Leon, I can repro your issue. That because the column's name ...Show All
