Answer Questions
n2a1s DataGrid currency formatting
Based in the examples in TaskVision, I wrote a custom implementation of the DataGridTextBoxColumn that only overrides the Paint method: protected override void Paint(Graphics g, Rectangle bounds, & ...Show All
Jase19 How can I share a folder and allow anyone to use it without logging in.
I need to share a folder and allow anyone to have access to it. Under permissions it lists the groups and users who have access to it. I have "Everyone" in the list and set for all permissions but when I try to open this folder from a different computer I get prompted for username and password. How do I make it available without needing a name and password Thanks Thanks for the info ...Show All
TACIR My latest wishes
This is my latest list of .NET framework enhancement wishes. Some of these problems have workarounds, but are kludges that I'd rather be able to remove from my code. The issues dealing with GDI+ performance and bugs are most critical to ...Show All
kanthb Custom Business Object Data Binding Warning
I've implemented a simple Employee object: public class Employee : INotifyPropertyChanged { private string name = "Foo"; public event PropertyChangedEventHandler PropertyChanged; public string Name { get { return name; } set { name = value ; OnPropertyChanged( "Name" ); } } &nb ...Show All
Mike Bouck Using Access database in a webservice
Hi, I created a simple webservice to fetch a value in an Access database. When I try to open the connection I get the following exception: "Cannot open file: you need permission to view its data" If I use the same database in a normal winf ...Show All
Alan Foster Developing on Windows 64 bit Edition
I am about to start a big project developing a CRM type package using Visual studio 2005 and SQL Server 2005. In order to do so I have just built myself a new PC with 4096Mb of RAM, however after installing Windows XP Pro I have found that the OS only recognises 3.25 Gig of the memory despite it being counted successfully. In order to fix this problem I have been told by someone to upgrade to Windows XP Pro 64 Bit Edition. I am now concerned tha ...Show All
Carlos De Matos Global Variable in Windows Application
I have created an MDI based application using C#. How and where can I create a global variable that can be used anywhere in the application Make it static. Make sure you close the connection and dispose the connection though. -mark Program Manager Microsoft This post is provided "as-is" Could you explain a little more please. That means if I want to run some process that does ...Show All
Jomo Fisher MSFT Is the 2.0 Framework required on the deployment server?
I'm in the process of deploying a Smart Client application via our Windows 2003 servers. Are we required to install the 2.0 Framework on the servers from which the application will be installed I believe the answer is "yes", but I just want to make sure. TIA Thank you very much Sameer. Not sure if you ever got an answer but I had a problem where I was trying to deploy a ClickOnce application where the framework was not i ...Show All
cdemez word document using vb.net
How do i create a word document using vb.net you'll need Word installed on your machine, and COM Interop assembly( i would recomment the official PIA from MS), from then on you could manipulate the Word object as you would from&n ...Show All
bonskir Whidbey BackgroundWorker component fails in Form Load event
I'm trying to use the new BackgroundWorker component (Whidbey) in a sample VB.NET WinForms project. I've followed the examples on MSDN and can successfully recreate and run those examples. All of those examples though have the background process kicked off from a button on the form; i.e. the RunWorkerAsync method of the BackgroundWorker object is called from the click event of a button. If I do this same thing but instead try to kick off the b ...Show All
k123 Painting over ComboBox and NumericUpDown
Hi - I have derived two classes, from ComboBox and NumericUpDown. When the data that is displayed in each of these classes is modified I want to paint little blue triangles in all the corners of the control. I have been able to accomplish this with another class I have derived from CheckBox, but the same code does nothing in the ComboBox and NumericUpDown derived classes. Below is the code where I am overriding OnPaint. Any help on wh ...Show All
NiklasEngfelt "DataBinding could not find a row in the list that is suitable for all bindings"
Hi All, I have a form with lots of related databound info on it. If a user loads up the form it starts creating a new 'booking' and adds new 'booking dates'. If they then decide to close the form without doing anything I need to delete all the info created. My form is bound to lists of buisness entities and I need to delete them all and remove them from the lists. Problem is I get: "DataBinding could not find a row in the list that is suitable ...Show All
svallarian setting DataGridViewCheckBox based on text file
I'm just learning how to use the DataGridView control. I am reading values from a text file and then inserting them into a DataGridView via DataGridView.Rows.Add. One of the columns in my DataGridView is a CheckBox (DataGridViewCheckBox). The valid values in the text file corresponding to the check box are 0 and 1. How do I set the value for the check box via the Add method ...Show All
Sanjit Sachan App Settings & configurations
Hi, I am new to windows development and I was wondering, what would be the best way to save an application settings without being accessible to app users. I thought of XML config file but this defeat it being "hidden". Will embedded resour ...Show All
reut 2 Bounds DataGridViewComboBoxColumn - Select value from the first should filter the second !
Hi All, I saw that a some members ask the same question and no one get an answare until now. I have a simple situation , One column is bounded to the "countries" table (country,description) , and the ather is bounded to the "cities" table (country,city,description). All I want is : when the user will select a country from the first column he will see just the relevant cities in the second column. The problem be ...Show All
