Answer Questions
Tim Meagher DataBound TextBox returns wrong Text value
here is my situation. I have a winform with some controls that were automatically created when i draged a table from the DataSources window. The system also auto created a tabStrip (nice) after this. I have created an event that fires when the red X or Delete button in the tab strip is clicked. in this event, i read a field value from one of the databound textboxes. The problem is the actual value returned when calling Textbox.Text i ...Show All
An_Cala Properly Binding A Combo Box In Data Grid In VB.Net 2003
To simplify what I'm attempting: I have two tables: 1- Employees with two columns (Employee_ID and Employee_Name) and 2-Projects with two Columns (Project_Name and EmployeeAssigned_ID). I have a datagrid that displays the records from the Projects table. I have added a combobox to the grid that I want to display the Employee_Name (not the EmployeeAssigned_ID) from the Employees table that relates to the EmployeeAssigned_ID from ...Show All
Philippe Quesnel How to add a file to a clickonce deployment?
I have an application that is a windows application and requires a file which contains profile information for an emulator. How can this file get added to the clickonce package so the file is installed when the application is installed. This is actually a file that can be executed so I also need to know what the path would be. Any ideas You can add a file to the deployment by adding the file to your project in ...Show All
GNE Detecting state of DataGridView
I have the classic problem of what to do with changes to a row that have not yet been committed when the user does a save. I'm using a DataGridView control in Virtual Mode (which is a truly sweet feature.) User edits a cell and doesn't move to another cell / row ( ) so that the change is not "committed" i.e. not pushed to the changed value back into the grid and its underlying data structure. He then does the save command. The problem i ...Show All
DellS ListBox question -- is there an 'ItemAdded' event or similar?
I need to do some processing whenever an item is added (or indeed removed, so changes generally) to a listbox. From a cursory glance at the documentation I do not find relevant events. I would be grateful however if anyone could point out that I am missing something. Or do I have to add a custom event If so, if anyone has code that could get me started I would again be very grateful. Thanks. There is no event ...Show All
Kgard vb application deployment
STRESS!!!!! I have finished my project/app and now would like to put it on disc to distribute. I have created a deployment project and asigned my app to it. I goto build and get a build error: Unable to build assembly named 'bookings.exe',HRESULT == '8007064F' Can anybody explain what this means and what I should do to resolve my problems. My app is made of various forms with an access db. I have some crystal reports in there as well. Many T ...Show All
PiratSS displaying the content(files) of an existing directory with a button click vb.net2005
hi , i have a directory say "c:\root\sample" and i have some files inside this directory and i want to see the content of the directory with clicking a button in the program. how to do that many thanks can you mark this question as answered You can begin with this: Dim path As String = "C:\" For Each file As String In System.IO.Directory.GetFi ...Show All
DigitalDJ Moving published ClickOnce deployment files to another location?
I want to use ClickOnce deployment on a production server I do not have permissions to access. Is there a way to publish to a development server and then have someone with permissions to both servers copy the files over I tried moving the files to a new location and the installation doesn't work. I changed the file path in the application manifests but that didn't work. The person that has access to t ...Show All
Chinna Srihari Set multiple forms to start in a windows project
In a multiple winform project, what's the best way to randomly pick and set any one of the forms to start for testing In a webform project, it seems this can be done more easily and faster. Thanks. ...Show All
TheCatty Anyone having problems w/ ClickOnce in the July CTP?
I can't get even the most basic application to publish. The error I recieve is: The value of the 'PublicKey' attribute in '.NET Framework 2.0' does not match that of the file 'C:\Program Files\...\Bootstrapper\Packages\dotnetfx\dotnetfx.exe'. I just built a clean XP machine and get the same error. Anyone else seen this Thanks in advance. FYI - fixed in the August CTP ...Show All
Smoky Clickonce for an Addin
Is it possible to distribute a VS Addin via ClickOnce I would like my entire team to be notified of changes to an Addin that we all will be using. I would like to minimize the chance of us running the incorrect version, so I thought ClickOnce might come in handy. ClickOnce is more suitable for running per user .Net 2.0 applications. You would be better off using MSI or some other installer techonogy for re-dist ...Show All
Guler User Control Event Handling
This may be a basic question, but I am hoping someone can assist me. I have a winform (2.0) which I add two user controls to during runtime. One user control contains a DataGridView control. The other user control contains a tab control containing various controls. I would like to handle the CellContentClick event of the DataGridView to alter the data in the tab control. This would be a master-detail type situation, but I am unsure how to handle ...Show All
-Codeman- MSI installer combined with ClickOnce
I have a scenario where I want to install a base application using an MSI installer, and then the base app should be updated with plug-ins (each plugin is a separate assembly). Can I use ClickOnce programmatically from the base app to download and update the plug-ins Thanks /Lars Lars, ClickOnce does not (not yet at least) have support for a plug-in type model where you want to individu ...Show All
ArgusLab my own EULA
How can I put my own EULA to be accepted by the end user during a setup application deployed with ClickOnce approach Thanks armindo Darren.Sim wrote: However, smarter users would be able to guess the link that the button links him/her to. Just found out that you could prevent users from directly activating the application via URL. You can do this by going into the "Publis ...Show All
Germán Schuager DataGridViewComboBoxCell Value is not Valid
Hello, I make use of automatic data binding for my datagridview. I display some informations about an person in my dgv. Everythink works fine, but then I replace a TextBox (the content is an int value) with a ComboBox to select values from a valuelist. After I start my application follwing error appear: DataGridViewComboBoxCell Value is not Valid I searched the msdn forums, their was told to change the AutoSizeValue to "NotSet", but t ...Show All
