praveen jalasutram's Q&A profile
Architecture Need for MINI OS
I do embedded systems at times and i would like to utilize the power of the XP core without the overhead of the GUI on the actually embedded system. I would like to turn off the GUI comletely. It would be nice because windows API is more programmer friendly than Linux. Plus the tools are more reliable. You will probably find the Windows CE API has most of the Windows API you need, you will find embedded XP easier then you might ...Show All
Visual C# ARROW, BACKSPACE, ENTER keys locked and are not functioning !!!
the issue may seem stupid enough, but not mystical. The behavior started to show self after I set "Visual Source Safe" as "Source Control" tool. As you check out the item you're not able to use any of the above typed keys, but others and mouse. You can achieve NORMAL_EXPECTED_BEHAVIOR of the keyboard as you close and start the Visual Studio again. And here is the mistical point that should explain. Where is that magical option box that I sh ...Show All
Visual Basic Printing with full PageBounds
Hi, I need to print some custom drawings on the whole paper surface. I wanted to use the pagebounds width and height but i still have 100 pixels margins. What do i have to do to bypass those margins. The papersize width is 1169 Pix, i want a 1169 pix Line. I did try to set the PrintPageEventArgs.pagesettings.margins.[top-left-right-bottom] to zero(0), but it still doesn't work. Any idea Thanks in advance. Serge ...Show All
Software Development for Windows Vista YOU NOOOB, examine the output!!!
Hi All, I've been working on creating a program that automates my program building and testing. A portion that I'm having issues on is collecting the stdout and stderr on process's children processes. I've attached a portion of *sample* code that I'm working on trying to perfect so that I can incorporate it back in to my program. I've tried taking care of security access issues (possibly a rea ...Show All
.NET Development Understanding the role of form="unqualified"
I roundly dislike the prefixing of attributes in XML files that won't go outside my application. (They are so thoroughly encrypted they won't do other much good:-)) And I much prefer to store info as attributes rathr than elements when I can get away with it. So I have discovered the value of setting form="unqualified" in the schema. The question is "where should I be doing this." If I get things exactly right I can hav ...Show All
Visual Studio 2008 (Pre-release) Could not find <DataTemplate> Tag inside <ListBox.ItemTemplate>.
Hello Everyone, I am a new user to Windows Presentation Framework. I tried working with some samples with the help of WPF Book by Oreilly. I got struck here: < ListBox ItemsSource = " {Binding} " IsSynchronizedWithCurrentItem = " True " > < ListBox.ItemTemplate > < DataTemplate > <TextBox> < TextBlock Text = " {Binding Path=Name} " /> : ...Show All
SQL Server Error when using VariableDispenser in a custom task.
Hello, I am building a custom component and am trying to access variables from within it. I have the following code: Dim vars as Variables = NOTHING Me .VariableDispenser.LockForRead("User::Variable") Me .VariableDispenser.LockForRead("System::ContainerStartTime") Me .VariableDispenser.GetVariables(vars) ... ... vars.Unlock() It blows on the call to GetVariables with the following error: "Unable to cast COM object of type 'System_ ...Show All
Visual Studio Tools for Office Can VSTO be used create class libraries
I'm looking to upgrade to VSTO and want confirmation that you can still create class libraries/dll files in this IDE. I'm looking to purchase in the next day or so, if anyone can confirm or tell me otherwise I'd be grateful. Visual Studio Tools For Office 2005 includes support for building class libraries in VB and VC#. You can find more details in the feature comparison chart at http://msdn.microsoft.com/vs ...Show All
Software Development for Windows Vista How to keep an activity still in Excuting state once it is recovered from it's internal operation error?
An activity, such as EventSink activty is used in my workflow to receive external event. Once an event fired,the activity will call an internal registered method to handle the event. It is alright if the codes in the method run OK, and the activity will be successfully closed. The problem is, if the codes in the method run failed there will be no opportunity to execute this activity again, even though the exception could be catched and han ...Show All
.NET Development I need help.....
Hi everybody, I have this problem where when I instantiate an interop COM object I can't destroy it until my program exits....In this case the COM object is an instance of the Access.Application object (Access 97) as found in the Microsoft Access 8.0 Object Library....here's what i'm doing. Imports System.IO Imports System.Runtime.InteropServices Public Class Access97Routines Public Shared Sub RepairCorr ...Show All
.NET Development getting a connection string from a text file
Hi I have created a small data access app. I want to pull the connection string for the SQL database from a text file. But I am getting it a bit wrong can anyone help at all Dim connStr As String = "" Dim SqlConnection1 As SqlConnection = New SqlConnection Dim sr As New StreamReader("C:\Program Files\MDM\ScanViewSetUp\ConnectionString.txt") connStr = sr.ReadLine() SqlConnection1 = connStr ...Show All
Visual C++ executing windows commands from vc++(eg: net user)
hi, i want to execute the windows API command "net user" from vc++. i want to store the result in a text file and retreive the home directory value . thanks gbabu17 wrote: i want to execute the windows API command "net user" from vc++. i want to store the result in a text file and retreive the home directory value . There are loads of ways to execute a program ...Show All
Visual Studio Team System AdminProjectRights problem
While trying to lock a branch down, I changed the permissions for a branch. I unchecked the 'Inherit Security Settings' box, and changed the contributors to only having Read rights. I didnt realize unchecking this box would remove all rights for every other group. Now, I dont have rights to change any other rights. I get an error saying my user needs AdminProjectRights. My user is both Team Administrator and Project Administrator, yet I dont ...Show All
Windows Forms Bug reporting - buttons are empty, no text at all.
Hi All! I have installed the Terrarium server on my computer, it went ok after some reinstallation and reconfiguration. The database is up and running, too. Now, I have installed the client on my computer. It is the version 1.2. No problem until I&n ...Show All
.NET Development inserting into access database throws an exception
exception thrown: "Operation must use an updateable query." Code that throwed excpeption: OleDbConnection conn=new OleDbConnection(ConfigurationSettings.AppSettings["ConnectionString"]); string sqlInsertUserInfo=@"INSERT INTO Users (UserName,[Password],RealName,Email) "+ " VALUES " + "(@UserName,@Password,@RealName,@Email)"; OleDbCommand command=new OleDbCommand(sqlInsertUserInfo,conn); command.CommandType=CommandType.Text; ...Show All
