Aryan_Patel_05's Q&A profile
Visual Studio Express Editions Using .dll
Can anybody inform me if Visual C++ Express Edition allows to create dll and to use Thanks If you mean through the wizard, the answer is no. Only in larger editions. Nevertheless, you can still build general 32bit dlls by just setting the compiler option /LD your self. For more information on the /LD option, please take a look at http://msdn2.microsoft.com/en-us/library/2kzt1wy3.aspx If you meant MFC Dll, th ...Show All
Windows Forms DataGridView Focusing a particular row
Hi, In DataGridView, i am trying to set the focus to a particular row, when i tried giving datagridView1.Rows[3].Selected=true; It just highlights that row but the focus (record pointer) is still in the first row. How do i move the record pointer(focus) to a specified row. ...Show All
Visual Studio Express Editions Visual Web Developer Beta 2 Debugging
When I try to debug a web app in VWD Beta 2 the browser opens and I get a dialog box asking for a username and password...what should I enter here As I don't have a login system as part of my app I'm assuming its window authentication i.e the username and password I login to windows with here at home But this fails...and I get a nice " HTTP Error 403 - Forbidden" message. This might be due to firefox being set as my default brows ...Show All
.NET Development Is there a planned delivery date for .NET Framework 1.1 SP2
Hi We are experiencing a serious issue that results in our application not operating correctly if SP1 of Windows 2003 is installed on the server. We have a WinForms client/server application using .NET remoting This is due to incompatibilities between .NET Framework 1.1 (installed on the clients) and the version of .NET framework installed on the Windows 2003/SP1. There is a hotfix available, but we have been asked to pay a substantial amo ...Show All
Visual C++ Static class members and LNK2001
I don't know if this is a bug or my own stupidity playing tricks on me (the most likely). I have the following class: class CDummy { public : static CDummy* Singleton; CDummy(); virtual ~CDummy(); }; With the following implementation: #include "CDummy.h" CDummy::CDummy() { Singleton = this ; } CDummy::~CDummy() { } Now, if I build that, I get a LNK2001 error on ...Show All
Visual C# ConfigurationManager not working ConfigurationSettings obsolete...
When I use ConfigurationSettings, I get... Warning 1 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' When I use ConfigurationManager I get... Error 1 The type or namespace name 'ConfigurationManager' does not exist in the namespace 'System.Configuration' (are you missing an assembly referenc ...Show All
SQL Server Problem creating SQL Server Mobile Subscription
Hi there When I try and create a subscription in SQL Server Mobile to a published SQL Server 2005 database, I get the following problem error during the data synchronization process: Failure to connect to SQL Server with provided connection information. SQL Server does not exist, access is denied because the IIS user is not a valid user on the SQL Server, or the password is incorrect. HRESULT 0x80004005 (29061) An ...Show All
Visual Studio How can I open a sql script file in a SQL editor in my own custome Project?
How can I open a sql script file in a SQL editor in my own custome Project There are two ways to do this. You can make your custom project a flavor of the SQL project so that it inherits from it. Then you get all the plumbing for free and only need to edit the project specific stuff. If you do not want to do this, the alternative is a little more complicated, I believe you'll have to implement the IVSProject3 method and all the ...Show All
Visual FoxPro foxpro2.5 application migration from windows98 to XP (Urgent)
Hi All, I have to migrate the existing data which is on windows98 to windows XP. My application is working fine on 98, but when I copied the files (almost all) into xp The application throws error “not a table/DBF”. When I open the same DBF file in notepad (one in 98 and other in xp) the xp file has some random characters and numbers in it where as the 98 dbf file I can read my column name. What could be reason Why the DBF file go ...Show All
Windows Forms Main form receives focus- Modeless Child Forms disappear behind it
How do I make a Modeless child form that does not go behind the main form when the main form receives focus The modeless child form cannot be an MDI child form ( because it must be able to 'float' over other controls which are docked onto the main form ). Nevermind, the following fixed my problem: childform.Owner = mainform; ...Show All
Software Development for Windows Vista workflow designer
Hi All, I wonder whether it is possible to host the workflow designer in my app. I thought it would be cool if I can have the workflow designer as my app's GUI. Thanks, DK Yes you can. I just saw a video with Scott Woodgate & team demonstrating the designer hosted in a winforms application ...Show All
Windows Forms Form example
Hi i want to create a form that functions as follows: Parent form with datagrid of information on it, with form containing a add, edit , and delete button. If you click add, it pops up a new form with blank fields relating to the data  ...Show All
Visual C# running an application from resources
Hi i embbed a application as resource.. can i run that app from the resources.. or how can i now extract and put it some where that app and run it.. please post some sample code How did you store the application as a resource As a byte array If so, then I would use the Assembly.Load method to load the assembly into your process's memory, use the CreateInstance method to create an instance of the assembly and then invoke the method that ...Show All
.NET Development Syntax error in UPDATE statement using OleDbDataAdapter UpdateCommand
This the simplfied version of my code. This is the essence what I am trying to do.. I get "Syntax Error in UPDATE statement" when I try to updat ethe database. OleDbConnection con; OleDbDataAdapter adapter; DataSet ds; OleDbParameter workParam = null ; string query = "select * from Build" ; string url = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\temp\\dtm.mdb;User Id=admin;Password=;" ; //this is how I try to connect and update the d ...Show All
Visual Basic ansii and string problem
Hello, I am building a medium difficulty caculator and have finshed it all except for one problem. I have a text box that displays the caculations and I can type into it using the keyboard. But I only want to be able to type certain ansii codes(only numeric integers) ie 0-9, -, +, and "." How can I filter out the string so that only those ansii characters can be typed what are the ansii codes for those characters because I don't want to be able ...Show All
