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

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

l3ullet

Member List

Envitro
jpmattis
Mark McGinty
SaLLuComp
RUReady
killerless
zegeba
eyal berman
colombod
Change Kalin
neorsp
Neal D. Gupta
Aniekan Daniel Usen
Dan Balsbaugh
VBNewStudent
BobbieB
R.A. Williamson
knreddy
PCr
Mahesh Chandramouli
Only Title

l3ullet's Q&A profile

  • Visual Studio Team System Broken FAQ for TFS

    Hello -- I went to read the TFS technical FAQ (usually a nice thing to do before posting), but the links to the answers all led back to the top of the page with the questions. You can see this at: http://msdn.microsoft.com/vstudio/teamsystem/support/faqs/foundation_techfaq/default.aspx Sorry to have to post about this, but didn't see any better place to make it known. Cheers, Skip He's right. It works in IE (or IETab) but just sends you back to the top in Firefox. ...Show All

  • Visual Studio Team System VS 2005 Solution Explorer's Getlatest not getting newly added files

    Dear members, I'm having weird issue and wonder that someone else having it or not. Sometime when i add some files in the project and does complete checkin using VS2005 Solution Explorer but still other team members cant see it under the project from Solution Explorer and when i explore the Source Control Explorer files are there and i'v to getlatest them from source control explorer. Can some body figure out wats the issue i dont want to use source control explorer especially when i added files from Solution explorer, it shuld getlatest them from Solution Explorer. regards faraz Check the history ...Show All

  • SQL Server Network access SQLExpress

    I am  trying to access a SQLExpress database on another computer on my LAN.  Using Windows Authentication. I don't really want to go to Mixed Mode authentication as I understand it involves a registry tweak and creating a new user. I am a novice at this. Getting the following error on running the connection code below: SQLException was unhandled "Login failed for user 'D37YKC1S\Guest'." No doubt it is a security problem but I am not sure how to get around it.  Any help appreciated. Connection code: Dim conn As New SqlClient.SqlConnection conn.ConnectionString = "Server=D37YKC1S\SQLEXPRESS;Inte ...Show All

  • Visual C# Error: allowDefinition='MachineToApplication'

    Hi, I get the following error when I publish & run the website on a live server. Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. Source Error: Line 68: by Microsoft that offers a single logon and core profile services for member sites. Line 69: --> Line 70: <authentication mode="Windows" /> Line 71: Line 72: <!-- AUTHORIZATION   I cant figure out what am I doing wrong Thanks in advance..... ...Show All

  • SQL Server DataReader Destination Adapter Error!!!

    Hi, Buddies, I have a very simple package in SSIS using a datareader destination as the output result. But when I ran the package, it always timeout and shows: "write 0 rows to the datareader". Why this happened, Can anyone help Thank you very much! Albert How do you execute the package The goal of DataReader Destination is to let you use the result of executing data flow in other applications via DtsClient ADO.NET provider. So the way you use it is by configuring this "other" application (e.g. Reporting Services or Analysis Services, or other app that supports ADO.NET data source) to use DtsClient ADO.NET provider, configure the ...Show All

  • .NET Development Remoting error

    I am having remoting errors when trying to call a dot net 1.1 client to a 2.0 remoting server. This is the scenario: From the client (Dot net 1.1) am trying to invoke a remote method on a server (dot net 2.0) based - I am able to receive as return values Serializable objects or pass as parameters Serializable objects to/from remote methods with no problem. The moment I pass as a parameter a MarshalByRefObject or a client side delegate wrapping a method of a MarshalByRef object (callback), I receive an internal error on the client -no further error messages are received. This works if both client and server are on Dot net 1.1 - also ...Show All

  • Visual Studio Express Editions MS ACCESS DATABASE Applications

    Hello everyone, While I'm a very accomplished database designer and have many MSACCESS database applicaitons running out there for a few clients I'd like some input on using Visual Basic Express to deploy and run my applications or my databases. Anyone who can point me in the right direction with a starter kit or sample applications would be greatly appreciated. Thanks Bob Short answer, you wouldn't use VB Express for this. What you need is an installation tool. Now, if your applications are written in VBExpress (with or without database, doesn't matter), then VBExpress has the 'ClickOnce' feature which allo ...Show All

  • Windows Forms why is c++ completely ignored on these boards?

    well why im having a total mind boggle trying to solve my problems whilst converting from a langauge i dont know (c# / VB) are there any good c++ .net resources out there  most of the things i need are covered on this site but not in a language i understand! They all showed off in VB huh Well...  I'M NOT moving!  I'm  ...Show All

  • Visual Studio Express Editions How can i connect from VB 2005 Expresss Beta 2 to SQL Server 2000 ?

    How can i connect from VB 2005 Expresss Beta 2 to SQL Server 2000 database I try: ...... Dim connectStringBuilder As New SqlConnectionStringBuilder() connectStringBuilder.DataSource = "127.0.0.1" connectStringBuilder.InitialCatalog = "myDatabase" connectStringBuilder.IntegratedSecurity = True connectStringBuilder.UserInstance = True Dim myConnection As SqlConnection = New SqlConnection(connectStringBuilder.ConnectionString) myConnection.Open() ......   and i've got error: SSE Instance re-direction is not supported for non-local user instances. Any help will be appreciated. Regards Sebastian ...Show All

  • Windows Forms URGENT:System.Resources.ResXResourceWriter

    hi all, I am using .NET framework2.0, according to MSDN there is a class ResxResourceWriter in the namespace System.Resources, but i am not getting any such class here, what could be the problem, i am using WINNT operating system. Thanks in Advance -Rahul got the solutiong actually ResXResourceWriter is in System.Windows.Forms MSDN says wrong ...Show All

  • Visual Studio Team System Bug -> Details -> Found in build

    Hi, "Bug -> Details -> Found in build" is a drop donw list and I would like how I can populate it without using automated builds. thnaks in advance for any info You can use ALLOWEDVALUES. Since the list of build number change frequently, you can create a global list for builds and use that global list inside ALLOWEDVALUES. Everytime when you get new build you can update that global list using glimport.exe and you don;t need to change the WIT definition. When you have a new build you need to change the global list in this case.Alternatively, you can have a batchjob running (once a day or twice a day) that uses OM to upd ...Show All

  • Visual Basic Most elegant way to check if a network connection is available

    Hi, I'm looking for the most elegant way to check if a connection is available to an ftp site. For example, I would lie to check the status of the connection before running a routine. Regards HerbiNZ I want to Continues Ping a Host My system has 2 Network card When i use the If My.Computer.Network.IsAvailable Then if my.computer.network.ping("your.ftp.server") then me.oicstatus.image=pic_yes.image else me.oicstatus.image=pic_yes.image end if End If on a timers tick event My Application Hanges up and also it gives the Stats d ...Show All

  • .NET Development Can't Create Object in COM+

    I have 5 years of experience in VB6, but I'm new to .NET. I've created a web service to replace VB6 SOAP calls. This web service needs to create objects that are actually COM+ proxies that I've installed from a DB server. The two servers are on a workgroup, not a domain. I've also specified in IIS that the anonymous user is a user I've created that also exists on the DB server (with the same password). The problem is that whenever I do objVariable = CreateObject("Object.Class") to create the object from COM+, I get an error saying "Cannot create ActiveX component". If I go into COM Security on the DB server and add ...Show All

  • .NET Development Select a DataGrid row in 1.1

    Hi how can i select a row where my ID=5 in my System.Windows.Forms.DataGrid another question: How can i get the value of the cell i am clicking my problem is when my datagrid is sorted... System.Windows.Forms.DataGridCell selectedCell = dataGrid1.CurrentCell; object selectedItem = dataGrid1[selectedCell.RowNumber, selectedCell.ColumnNumber]; int cellValue = Convert.ToInt32(selectedItem); ...Show All

  • Visual Studio Team System Unable to create unit tests...

    Hi, I am trying to create VSTS unit tests for my ASP.NET 2.0 application classes which resides in App_Code folder. Whenever I right click on the code editor and select 'Create Unit Test' against a method in the class, the 'Create Unit Test' window does not list my method. None of the methods in my classes are displayed instead it only shows two classes 'ProfileCommon' and 'ThemeLoad'. TFS Version: B3Refresh Any one got into this situation Thanks -Praveen What language are you using Can you post a snippet of those classes Also, make sure that you have the Create Unit tests dialog ...Show All

©2008 Software Development Network