Answer Questions
Omar Qadan How to Create Subfolder inside Data folder during ClickOnce Installation
Hi there gurus of this world! My application requires to have a separate folder (where other files are installed) inside the Data Directory of a clickonce application. Is there any way ClickOnce can create this folder during installation If you want to create directory dynamically, you can add script, which will be excuted in installation, and which will create required directory. -thanks In your application start ...Show All
Jgk23 Date Time Picker
Hi everyone, I am using a windows application where I use a date time picker. what is the event raised when I click on the date time picker so I see the calendar. thanks Thanks Roxana, I tried your code and it works with a month calendar. but if I want to use a date time picker, you told me that with F4 it will work correctly, I tried with F4 but it didn't work. Thanks again. T ...Show All
JP123 How to populate a listbox with a complicated query
How to populate a listbox with a complicated query I created a query in the KeywordSetTableAdapter SELECT KeywordSets.KeywordSet, KeywordSets.ID FROM KSGroups INNER JOIN (KeywordSets INNER JOIN KSGroupKSAssignments ON KeywordSets.ID = KSGroupKSAssignments.KeywordSetID) ON KSGroups.ID = KSGroupKSAssignments.KSGroupID WHERE (((KSGroups.ID)=5)) ORDER BY KeywordSets.KeywordSet Fill a datatable method: FillByKSG5 Return a datatable method: ...Show All
Lavaor How to set DataGrid Cell Value
Im trying to set the DataGrid CurrentRow Cell value to what is contained in a text box txtMyValue.Text on my form I have tried the code below but it wont work Can anyone set me on the right path DataGrid1.CurrentCell.RowNumber, 0).value = txtMyValue.Text All three of these ways are correct. -mark Program Manager microsoft This post is provided "as-is" Here are 5 ways I found to ...Show All
shubho Who should use ClickOnce?
I have been testing the ClickOnce technology for weeks now, and I am continually asking myself the question: "In what way is ClickOnce designed to be used " Using VS 2005, or the Mage SDK tools requires the developer to know the application URL ahead of time. This is not feasible if you normally vend your software to a business or organization that will then distribute it to their workstations via their choice of web servers, file servers, etc. ...Show All
steve1977 Data Grid tree view
Hello, when a user wants to see data in a datagrid at run time they need to expand the datagrid tree view to the data table. I use: dataGrid1.Expand(-1); dataGrid1.NavigateTo(0, "DataTable"); at design time to do this for the user only, it will work just once. Well the dataGrid1.NaviateTo will only work once. Is there something I need to reset or an attribute I am unaware of so ...Show All
tamtararamtam ToolStripControlHost - Designer functionality
Hi, I heard that RTM should have functionality to give custom toolstripitems designer functionality, so they work in the designer. However, I found nowhere how to do this Anyone can help out Thanks, Tom Jessica wrote: Add a new class to your project Inherit from ToolStripControlHost - here's a sample: http://blogs.msdn.com/jfoscoding/articles/477428.aspx Make sure you've got the ToolStripDesignerAv ...Show All
alfredd how to get Row Value in DataGrid
I have a datagrid with 10 rows (only Invoice Numbers - one column) . When the user douple clicks a particular row I need to what the invoice number they selected (The Value in the row(n).column(0)) Please help Hallo DOSST, Is it easy to use DataGridView than DataGrids regards swingme thanks . I'm using DataGridView. I found the code to get the Data private void dataGridView5_CellContentClick( obj ...Show All
Joeman345 Appupdater Woes......
I asked my hosting compant to allow file browsing for a specific folder, which they did. When I use the Appupdater component, I get the following error: 7/27/2004 11:26:46 AM: UPDATE FAILED with the following error message: System.Net.WebException: The remote ser ...Show All
Pat_ON how to active mouse right click function?
Mouse right click function did not work. How to active mouse right click function Let's assume you're talking about a Button. Start by using the MouseDown even since it has the MouseEventArgs argument we can use. Here's a same that w ...Show All
JonTec7 Move or Drap and Drop items in CheckedListBox VS.Net 2005
Dear all, My solution have a form with checkedlistbox and two button (Move Up, Move Down). I want to move up/down items in checkedlistbox when i push buttons up or down or drag and drop items possible. This is my code : private void btnMoveUp_Click( object sender, EventArgs e) { chkListBox.SelectedIndex -= 1; } private void btnMoveDown_Click( object sender, EventArgs e) { chkListBox.SelectedIndex += 1; } please help me add ...Show All
Ranga Krishnan Application blocks with SmartClient apps
I'm writing my first smart client application. It is a WinForms based application that I reference by pointing my web browser to a url. Thus far everything has been working nicely. My problem is that now I want to add the Exception ...Show All
Carpet King On-Screen keyboard
Does anyone have a sample project on a On-Screen Keyboard written in C# or V.net!!.. Thanks.. ...Show All
Narendra Tiwari Looking for the best way to distribute my application with the .Net Framework over the Web
I have a commercial application distributed purely over the Web, an eval upgrade to Visual Studio 2005 was relatively painless, so now I'm considering a real move to .Net 2.0. The problem is that my users will have to download a new framework. It appears that there are a couple of approaches I could take: 1) use the new setup bootstraper - this would be the best approach as I already have a WiX based .msi installer. Unfortunately I can't ...Show All
Will Pearson Using a dataview in a child table loses the parent navigation links
Hi folks - My problem is this: Single data-grid in a winforms app, bound to parent and child tables via a relation defined in the dataset. Grid datasource is set to datasetname, grid datamember set to parent table name. Grid displays fine&n ...Show All
