Software Development Network Logo
  • Visual FoxPro
  • Visual C#
  • Visual C++
  • Architecture
  • VS Express Editions
  • Windows Vista
  • Visual Studio
  • Game Technologies
  • Microsoft ISV
  • Windows Forms
  • Visual J#
  • .NET Development
  • Visual Basic
  • Windows Live
  • VS Team System

Software Development Network >> DJ24966's Q&A profile

DJ24966

Member List

Michael J
THHNO
smith_kbase
davidMcKenzie
tamikn
mpco
Patrick ODay
tadam - MSFT
happy every day
rebeccat
forwheeler
Mastro
Arno3456
stan_gamla
Sudheesh Suresh
Jude A
Renzo Ruiz
hghumphrey
KingHooi
Gurdeep
Only Title

DJ24966's Q&A profile

  • Visual C# Adding button to sidebar in Open dialog

    I'm trying to write an integration in C# to the windows open and save dialog and I have no idea where to start looking.. The objective is to add a new shortcut under the "Recent Documents", "Desktop", "My Computer" and "Network Neighborhood" buttons on the standard file open dialog. Any pointers to code samples or docs would be appreciated. Well, there's eaxclty the ways with Windows, there are more than one ways to get to the same place. I do agree with you , not to mess with registry, unless it is absolutly necessary. I'd read somewehere about 10 things you should consider when writing secur ...Show All

  • Visual Studio Team System Offline mode help - Finding editable files not checked out

    I understand that offline mode wasn't a priority for V1.  We can always just attrib a file as writable and party on.  However, when I do get my laptop connected back up to the network it would be nice if there was a TF command (even just a command line command) that would let me know which repository files I have that are editable but not checked out.  It would also be essential that the command works recursively so that I can just execute it at the top of my workfolder.  Something like: [C:\Projects\Foo] ! tf hijacked /recursive * A minor bit of GUI support for hijacked files would be ...Show All

  • Windows Forms DataGridViewComboBoxColumn Selection Changed

    Hi, I would like to handle the Selection Changed event of a ComboBox column inside my datagrid, what would be the best method to do it. I tried the CellValueChanged event but that throws up an error when I am loading the datagrid. Please suggest how to do this. Thanks, Kunal Hi I think Mark has already pointed out that you should use SelectionChangeCommitted event because it insures that user has finished with the item which he wants to selects. The annoying thing that the message is coming again and again; It is happening because EditingControlShowing event fires every time when you reach to the next ...Show All

  • Windows Forms Application icon

    I want to place a self made application icon in the top left corner (left to the name of the application). On a design form I choose a path to icon, but the system does not recognize it. The icon is .ico file. What is a problem and how can I place an icon there When you say the system doesn't recognize it, what do you mean Have you tried opening the icon itself using Visual Studio, or another Icon Editor ...Show All

  • .NET Development n-tier application (typed Dataset)

    I have created an n-tier application. The client side (win forms) calls the business layer. Business layer calls the webservice and the webservice calls the data layer. The datalayer gets the data using typed datasets. In the datalayer I have created a .xsd file In this layer I can use this typed dataset to work with the dataset. For example refer to the column of the table using the typed dataset. The problem is that How can i be able to refer to the table columns on the client side using the typed dataset Thanks You could check the .xsd file's modifier property is set to public so that your dataset ...Show All

  • Windows Forms GroupBox control - which member is selected

    The GroupBox control can have members such as check box or radio button that are selected or not.  The Groupbox will allow only one of the members to be selected.  How do you tell which member is selected How do you bind this selection to a data field as in MS Access Thanks, Dave ...Show All

  • Smart Device Development VS 2005 Pro, Mobile Project, VS can't make device connection.

    Debugging to Emulator works. Every time I try to debug to USB Windows Mobile 2003 SE PDA, I receive the error "The configuration data for this product is corrupt.  Contact your support personnel." It does the same thing when using the menu item Tools | Connect to Device. I have tried both Active Sync 4.0 and 4.1. Both do the same thing. ActiveSync 4.0 and 4.1 both work with the PDA, it's just that VS 2005 can't make a connection to the device. Firewall is open for ActiveSync. Any sugesstions, please -- Mike McAllister Hi Mike, The error message which you are seeing might result if you have upgraded to V ...Show All

  • SQL Server Can't connect to SSIS

    Hi,   I'm evaluating SQL server 2005 for planning a upgrade of our datawarehouse from SQL 2000 to 2005. We use a lot of DTS pacakages so that's my primary focus right now. I get this strange error when trying to connect to SSIS -> Stored Pacakges -> MSDB: TITLE: Microsoft SQL Server Management Studio ------------------------------ Failed to retrieve data for this request. (Microsoft.SqlServer.SmoEnum) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: Login timeout expired An error has occurred while e ...Show All

  • Windows Forms Focus on disabled menu items

    Hi, Is there any way by which i can avoid the menu items which are disabled gaining focus.  Bcoz, currently what i notice is that one can still click on a disabled menu item and keep the UI thread busy, the click event will not respond though.  Thanks in advance. Magesh Hi Spotty, Thats what exactly puzzles me....  Juz give a try disabling a menuItem in the mainmenu and try to click on it...  you'll see that the focus is received by the menuitem. I have a background thread making webservice calls and on completion, i execute some procedures of the main form as a notification of job c ...Show All

  • SQL Server Cannot connect to SQL Server 2005 April CTP from remote computer

    Hi, I am trying to connect to a SQL Server on a Windows2003 w/sp1 Server from a remote computer but always seem to get the infamous "Access is denied or Server Does Not Exist" error.  However, if I try to connect from the machine that is running the server, there is no problem. (Used sql account, server=mixed authentication) The windows 2003 Server is a single server installation with .Net 2005 Beta 2 Team Suite, Team Foundation Server and Sql Server - Installing these items  took me a while, but eventually I managed to install from scatch to end without any installation errors. I have triple checked that both TCP 1433 and UDP 143 ...Show All

  • Visual C# How can I get a list of the computer names from Network Neighborhood?

    Hi, I need to obtain a list of computer names from netwok neighborhood. Could anyone help on how to do this Thanks in advance, Nuno Silva. This is using VB 2005 Private Sub GetNetCom() 'Replace <DOMAIN> with your current domain Dim enTry As DirectoryEntry = New DirectoryEntry("LDAP://<DOMAIN>") Dim mySearcher As DirectorySearcher = New DirectorySearcher(enTry) mySearcher.Filter = ("(objectClass=computer)") Dim resEnt As SearchResult Dim strPCs As String For Each resEnt In mySearcher.FindAll() 'Get rid of those CN= p ...Show All

  • Windows Forms How to pass the data to datagrid cell of the parent form ?

    hi,all: I have a windows form with datagrid,and I captured the double-Click event of the datagrid row to pop up a chirden window to edit the row data and pass back to datagrid cell. I'm new to windows form programming,anyone can give me a idea or some sample code. thanks in advanced! Hi, When you pop up the child window, send it a DataTable that is obtained from the DataGrid. Eg: DataTable dt = (DataTable) this.dataGrid1.DataSource; DataTable dtable = showchild(dt); Before you close the child window, populate the DataTable with the modified data and return it to the parent window. . . return( ...Show All

  • Visual Studio Express Editions Reporting in VB.NET Express

    OK, there's been a few questions about this, but none have really answered this question. A control you can add to the tool bar is a "Report Viewer".  One of the links when this control is placed on a form is a link to "Design a New Report".  This link doesn't work.  So my questions are: Will it only work in the full version If I create a report in Crystal Reports (either from an earlier, full version of VS.NET or the free 30-day trial), can I link this to the "Report Viewer" control Thanks in Advance Gareth The report designer control is only available in Visual Basic Standard +, i.e. not ...Show All

  • SQL Server OleDB Connection Class in Custom Task?

    I have OLE DB Connections set up in my connection manager (Native OLE DB\Microsoft OLE DB Provider for SQL Server). I would like to reference and query these connections from a custom task, written in C#. I currently reference it as follows: using System.Data.OleDb; ................................... OleDbConnection connection = ( OleDbConnection) connections["MyConnection"].AcquireConnection( null ) ; What may be obvious to some (though wasn't to me, as I am new at this), when I run the task, I get an error saying that I cannot make this cast. After perusing the boards, I understand that this is because I am ...Show All

  • Visual Studio 2008 (Pre-release) May 2006 CTP "XAML Syntax Tightening" problem...

    Hello, all. I've installed the May WinFX CTP, and, unfortunately, I've ran into what Tim Sneath calls in his blog "XAML Syntax Tightening". To be more specific, I have a subclassed TabControl that has x:Name for elements in the definition scope (inside its template, in the subclassed TabControl), and now I get a build error because I am also using x:Name on the elements under it in the usage scope. Does anyone have the solution to this issue Thanks. No solution yet ... ...Show All

©2008 Software Development Network