Software Development Network Logo
  • VS Team System
  • Microsoft ISV
  • Visual FoxPro
  • Game Technologies
  • Visual C++
  • Visual J#
  • Windows Vista
  • Visual Studio
  • Architecture
  • .NET Development
  • Visual C#
  • Smart Device
  • SQL Server
  • Visual Basic
  • Windows Live

Software Development Network >> Will Walter's Q&A profile

Will Walter

Member List

Magpie
NilanjanB
Janaki
KeithFranklin
Phil_Ramos
Oleg Starodumov
Venkateswararao
t43
amitvjti
Fernando Velásquez
zatom idham
Shifty
Bart_p
mbaluyos
P3T3R 7
Amit kr mishra
Johann
Jon Braganza
Zoran Pecenovic
Rogvi Knudsen
Only Title

Will Walter's Q&A profile

  • Visual Studio How to get current line number

    Hi, How can I get current line number via VS.NET macro I know it is Line property but I still get error when I call it. Probably I am doing something bad. Thank you . This seems to work in Visual Studio 2003: Sub LineNumber() Dim objSel As TextSelection = DTE.ActiveDocument.Selection Dim objActive As VirtualPoint = objSel.ActivePoint MsgBox("You are on line : " & objActive.Line.ToString()) End Sub   H ...Show All

  • Visual Studio Express Editions connect to sql express

    I'm trying to connect to an instance of sql espress using sql server management studio express, and when asked for the server name I typed ".\sqlexpress" but I get an error. Is there any other server name I could use to connect. Thanks. Try at the Login window, under "Server Name". Select "Browse for more" in the dropdown tap. This should find all server connections on your computer. I already had a SQL Se ...Show All

  • .NET Development Sorting datagridview prgramatically

    I have built a DataGridView called CUSTOMERDataGridView.  The data is bound to a dataSet object set up as follows:        CUSTOMERDataGridView.DataSource = CUSTOMERBindingSource        CUSTOMERBindingSource .DataSource = HFD_1DataDataSet (SQL Server Database)        CUSTOMERBindingSource. DataMember = CUSTOMER  (database table) Here is my proble ...Show All

  • Visual Basic SQL Exception Unhandled

    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) Can anyone help me with this I've seen this several times and it's hard to remember how I've fixed it. First of all I'd ...Show All

  • Visual Basic Visual Studio 2005 project in 2003

    In my class we must use Visual Studio 2003, but I am extremely excited that I have recently got a copy of Visual Studio 2005 Standard Edition (Microsoft presentation in my city).  I have been told that there is a way to save a project from 2005, and then open it in 2003, but I have been unable to find where this feature is hiding.  Any help is much appreciated. Thank you, Chris Dwyer foulplay2@gmail.com Congratulations on the new ...Show All

  • Software Development for Windows Vista SDK for low speed connection?

    Far from the town, i have a low speed connection.. :-( For me, 1 Go is a dream I will never reach .....!!! Is there any other way to get the Last SDK You have two main options: Download the SDK using a download manager that can stop and resume if you have internet connection issues. Many will also allow you to set the priority of the download, so that it will not affect the total speed of your internet connection Download ...Show All

  • Visual Studio Has anyone written a MSI bootstrapper for Guidance Automation Toolkit (GAT)?

    Has anyone written a MSI bootstrapper for Guidance Automation Toolkit (GAT) Basically I want to go to the Setup Package properties in Visual Studio and hit the Prerequisites button and have Guidance Automation Toolkit listed as a prerequisite that I can choose from. I don't mind writting one and posting it if no one has already written one, but I will probably need someone to post what the InstallChecks will be for GAT. Thanks! ...Show All

  • Visual C# Questions about Objects in C#

    1. Do we need to pass objects by ref, if we want to have the changes made in a calling function 2. And the same question for the objects passed by Remoting 3. Do we really gain performance in calling Dispose method of DataSet while leaving from a function(the dataset is no longer required) If yes, then what does the Dispose do there Is it freeing the memory occupied by the objects If yes, then basic definition of GC itself gone righ ...Show All

  • Visual Studio Team System Does TFS have it's own SCM, separate from VSS

    After installing TFS, I installed VSS 2005 on the server (seemed the obvious thing to do).  I'm now confused as to whether TFS has SCM built in, or whether it just uses VSS 2005. Yes, TFS has a brand new source control system.  In VS 2005, you can select what source control provider you want using Tools -> Options, select the Source Control node, and then change the source control plug-in with the co ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as desc ...Show All

  • Visual C++ STL.NET serialization

    Is STL.NET going to include anything from the C++ standard library or only the STL subset Are stream based classes going to be present in STL.NET Are there any known plans to port the Boost library to .NET managed My application must be 100% verifiable ! Using both CLI\C++ and STL.NET, what is the best method of implementing a serialization mechanism The aim is to serialize from an unmanaged application and de-serialize this same file i ...Show All

  • .NET Development Membership provider doesnt connect to sql server.? RC1

    Hello, I configured my asp application with membership provider, the code below connects, I used management studio and it connects, but the membership and role functions doesnt work, the debugger says its unable to connect to sql server, look below the web.config, it has exactly the same connection string. Thanks Dim conn As String = "Data Source=CAMPEON;Initial Catalog=inventario;User Id=inventario; Password=inventario" Dim sqlconn ...Show All

  • Smart Device Development How to test phone incoming call on wm5.0 smartphone Emulator using visual Studio 2005

    Dear All, I am developing an application for smartphone using visual studio 2005.It includes phone incoming call notification.I am unable to test incoming call notification on Emulator as we cannot have multiple instances for an Emulator. Is there any possible way to test incoming call notification help me please, Thanks. See http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/callevents.asp  for how to do t ...Show All

  • .NET Development Encrypting the app.config file

    My application will use the DataProtectionConfigurationProvider to encrypt my app.config file. I can encrypt the file from within my applicaiton, but I would like to be able to encrypt it outside the application so that the file is encrypted when it is deployed. I know that you can encrypt web.config files with aspnet_regiis.exe. Is there a tool that can encrypt app.config files as well Eric No there is curren ...Show All

  • Windows Forms add customized combo box in datagridview

    i have my customized combo box found in the other site. i need this to add in dfatagrid view the combox box have multiple columns which i find it suitable for me.for now, the problem is aading it in datagridview heres the my code public class mycombo inherits datagridviewcomboboxcolumn public withevents columncombobox as mtgccombobox ---this mtgccombobox is mycombobox found on the other site ........ end class th ...Show All

©2008 Software Development Network

powered by phorum