Kesava's Q&A profile
Windows Forms version question
Hi All, Quick question, I am publishing with changes to Revision number and I am upto 19 and in the publish screen I see the publish version as 1.0.0.19, but when I go to the client install box and I see the application version it shows 1.0.0.0 even though they have the latest build. Is there something I am overlooking Thanks in advance. Publishing has it own versioning, to keep them in sync you need to update the AssemblyInfo in Properties of your project. In there you should find [assembly: AssemblyVersion ( "1.0.0.0" )] [assembly: AssemblyFileVersion ( "1.0.0.0" )] You just need to update them ;-) HTHs, James ...Show All
Windows Forms Issue with Modal Dialog..
I have customized FormBase in which i have implemented a timer and that forms the base class for all the forms. I have also customized the DataGrid/DataGridView and some of the controls as textbox/maskedtextbox etc... When i set the form derived from that FormBase and set that instance of the derived form as Modal dialog as derivedForm.ShowDialog().... It diverted from the default action i can view the derived form even over the window of other application though the derived form is an MDI child of my application. Could anyone tell me what wrong i have had done in form base or other controls or should i have to do some more coding other than derivedForm.ShowDialog() to make it modal dialog Actually i am trying to open a ...Show All
Windows Forms Download file from URL after login URL form
Hello, I'm looking for a code in VB.NET or for access 2003 that do the following: 1. Browse to a web page contain form with username and password. 2. submit the username and password 3. download a file from URL How can I do that Depends on the web site you want to work with. For some of that you will be able to automate login process just by sending web-request (GET or POST) using HttpWebRequest or WebClient class... For some of that you will have to automate the browser (for instance, if it uses AJAX or something like this)... But, if it is possible, I recommend you to implement a web service on the server side and use it to download files. It will be much easier. ...Show All
Customer Care Framework a problem with SSO Single Sign-On
when i followed steps in lab D "Lab D: Use of SSO" Exercise1 and Exercise2 with application named " SSODemoLoginWebApp " every thing run ok, but when tryed to do the same with my application i found that username text box and password textbox not filled with username and password data, and nothing is happend. i tryed this with many applications i have, and when try to use my application url with the same name of the application " SSODemoLoginWebApp " in sample Lab D it works fine, i think there is one step is missed, please i want to know is there any missing steps i appreciate your help I am facing the same problem. But not able to find the app.xml and appmapping.xml files in the spec ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Record Audio Output
Hi all, I want to record audio output, mean the audio stream from the speacker not the mic. For example I start Media Player and then record it's output. Can you help me cheers DirectSoundCapture will capture from the selected recording device/channel in the Windows volume control utility. You should find a channel called "Wave Out Mix" or "Stereo Mix" or something similar, and check it as the selected recording channel. Note that not all cards can reroute the stereo mix to the recording unit, but many do... ...Show All
.NET Development is is possible to request trigger in webservice
i need to create an webservice course training project,if user register for course,the available seats in another table should decrase in value and check whether avilable seats become zero each time user registering,what is the method for this column value updation rfreire, what else i need to do to find the available seats and allow registering only after checking for the seats and also after registeration no of seats seats should reduced.help me thanks ...Show All
Visual C# AppDomain and WinForms performance issues...?
I have a bootstrapper application which needs to be able to launch one of several different versions of my application (for clarity I'll call these versions the SubApp). I have chosen to do this using AppDomains... If I run my SubApp on its own (either via the exe or from the IDE) it runs perfectly and performs really well. However, when I run it inside the AppDomain from within the BootStrapper app the performance is definitely slower... The first form takes around 10 seconds to appear (a oppose to about 1 second running directly) and even after that, there is a noticeable performance degradation when loading new forms, etc... Each SubApp version sits in its own directory, so I use the following code to create the AppDomain: // Cre ...Show All
Visual Studio error on sp1 update
I have updated visual studio 2005 on an xp machine and am able to use sql server compact edition in my projects now. Everything works fine. I have tried to update vs 2005 on a server 2003 machine several times but it fails with the error code 0x643. Does anybody know what this is It didn't work for me either, I found some information on the problem at this link- http://blogs.msdn.com/heaths/archive/2006/12/29/the-visual-studio-2005-service-pack-1-installation-experience.aspx There are some links on this page, one of which is specific to the 1718 error. It has something to do with how big the service pack is and the way server 2003 handles the memory. One fix is to change a registry setting just for the ...Show All
SQL Server Service Pack update
Good morning. Is it necessary to run the service pack (I'm upgrading SQL 2K from SP3a to SP4) on the clients, as well To update any connectivity tools, etc. Thanks. Chris Hi, the most update from SP3a to SP4 where just for the server engine. You don’t necessary need to install that, although it won’t break anything. So it’s up to you. I always installed that on my clients to keep the most current service pack. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual C# Convert ASP.NET 1.1 Visual Studio 2003 to Visual Studio 2005, german umlaute
I'd like to convert a Asp.net 1.1 Applikation to Visual Studio 2005. The problem I have are some "umlaute" in the column names of the database and the datasets like in HTML - noation ü or ä The after no error's in the converting process the compile throws the following error: Error 1 Unable to convert input xml file content to a DataSet. Invalid 'name' attribute value 'StaatsbA rgerschaft': 'The ' ' character, hexadecimal value 0xBC, at position 8 within the name, cannot be included in a name.'. D:\Projekt_privat\Kopie von www\App_Code\olvmanager.DB_PersonenDS.xsd 1 Message 2 Could not find schema information for the attribute 'urn:schemas-microsoft-com:xml-msdata:PrimaryKey'. D:\Projekt_privat\Kopie vo ...Show All
Smart Device Development NotSupportedException was unhandled
hello, I got this exception on the first line of this code in the designer: // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(3, 3); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(222, 94); Basically i just added a picturebox to contain a jpg image. this form is common to all the applications and they work fine with the others. but the app im working on throw me back the error message. Im using VS2005 CF .net 2.0 so do the other app (which are written by me too). So i don't get it. why the others are fine but this later doesn't work. Any suggestion ...Show All
Visual Studio Team System Using DataSet.xsd as DataSource in a Data Driven UnitTest
Hi, I'm new to Testing with VS 2005. I already searched but found nothing similar. My problem is: I want to use a DataSet defined in an xsd as DataSource for a DataDriven Test. I found something for testing with a Table of a Database here . code: Damokles, I wonder what is the resistance to use a database table to a xsd. With a dbtable you could create dynamic views and change the query for the view as reuqired for your test w/o having to edit the test for the data that you supply. I think we did not target xsd as a dataset for DDT in VS2005. BTW - I have not heard of this as a blocking issue from many users. thanks, ...Show All
Visual Studio Express Editions Changing The state of a Row or Column or Cell Programmatically in a DataGridView
Hi I Want to change the state of the a Cell or row or Column. For example i want to set the state to frozen to 2 or three columns ( the first columns) . The State property is readOnly. In the documentation I found the following description in the remarks section of DataGridViewElementStates Enumeration: "Although these different states, like Frozen, are enforced by the UI, they can be programmatically overruled." The question is How Hi, RafaBotero this.grid.Columns[0].State is used to g et the user interface (UI) state of the element.But not to set. And if you want to set its ReadOnly and Frozen property, you'd do like this: this.grid.Columns[0].ReadOnly = true; this.grid.columns[0].Frozen ...Show All
SQL Server how to find the edition of SQL Server 2000/2005 through registry?
Hey, I need to understand what version of SQL is running on some machine. How can I do it looking through the registry. I know you can do it for windows and exchange but I don't know how to do it for SQL 2000. I know in SQL 2005, it tells you the edition for SQL, but how do you do it in SQL 2000. Also, I'm pretty sure, you can look at the Product ID and tell if it's an enterprise edition or standard edition and so on, but I don't have the information. Windows and Exchange do it like that. Can someone provide me with such info Thank you in query analyzer type: SELECT @@VERSION or try HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\CurrentVersion also see http://groups.google.com/grou ...Show All
Visual Studio Visual studio does not respond
Hi, When I try to debug my project, visual studio stops responding with a message " Visual Studio is busy and is waiting for an internal operation to complete" This happens only when I am debugging TreeView_AfterSelect event. Can anyone suggest why this may be happening Thanks! Language -- C#. It is a windows application and I am using Visual Studio 2005 OS version -- Microsoft XP Professional version 2002 service pack 2 ...Show All
