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

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

Stef76

Member List

Tamoxifeno
BKrishnakumar
Jeff Hosley
KevsInfoQuest
chrismoo
MalcolmB
bjun
r_amarnath
Andrew Tregonning
Loic Baumann
Donal McWeeney
Forest
Vasya
Greg Motter
Jonas1980
Nyqvist
hhhguten
Jasim Iqbal
blueinc
sergiotarrillo
Only Title

Stef76's Q&A profile

  • SQL Server Cannot connect to a named instance of SQL 2000 or 2005

    Hi, I am struggling connection to a named instance of SQL 2000 (SP4) from another machine but without any success. I get an error message saying that the server does not exist or access is denied .   The security configuration in this named instance is the same as the default instance (also 2000) and the remote machine can connect to it successfully.   I also configured the aliases in Client Network Utility in the client machine and set the server (machine) name and the port number used by the instance - but no help.   I use osql and Query Analyzer to connect to it, but I cannot connect by any o ...Show All

  • Visual Studio Minor bug in VszWizard.FindAddItem

    In the Microsoft.Practices.RecipeFramework.VisualStudio.dll in Microsoft.Practices.RecipeFramework.VisualStudio.Templates.VszWizard.FindAddItem() is the following code:       state["WizardType"] = context[0];       state["ProjectName"] = ((ProjectItems) context[2]).ContainingProject.UniqueName;       state["ProjectItems"] = context[2];       state["LocalDirectory"] = context[3];       state["ItemName"] = context[4];       state["InstallationDirectory"] = context[5];     &nbs ...Show All

  • Windows Forms Before posting, please confirm this is a relevant forum

    This Forum is for questions related to the ClickOnce Deployment Framework that ships with VS 2005 (.Net Framework 2.0) If your application is installed by clicking on an .application file - it IS a ClickOnce application. If your application deploys fine on the machine but is throwing an exception on execution it is most likely an Application issue on that particular machine and not a deployment issue. The easiest way to confirm this is to just copy the Application locally into a folder and launch it. If you still see the same exception - you need to debug the application not its deployment. If this is not forum for you browse ...Show All

  • Visual Studio Team System The ASP.NET 2.0 QFE is not installed on this computer

    Hi All, I have been trying to install VSTFS all week and have finally almost got to the point where it will actually install but I get the following: The System Health Check has detected a problem that will cause Setup to fail. Description The ASP.NET 2.0 QFE is not installed on this computer Workaround / Remedy ASP.NET 2.0 QFE 4014 is a prerequisite for this product. You must first install ASP.NET 2.0 QFE 4014, which is included on the Team Foundation Server installation media, before you can install this product. More information For additional information and help please refer to: http://go.microsoft.com/fwli ...Show All

  • .NET Development Visual Studio 2003 Mixed Mode Debugging Crash

    I have a project that is made up of a mixture of C++ COM dlls and C# COM dlls.  The main executable is a Win32 app.  If I turn on Mixed mode debugging to allow me to debug the C# dll's Visual Studio crashes 100% of the time as it loads the C# dll's.  I noticed that the project uses reference to the .Net framework 1.1, but just before Visual Studio crashes it is loading .Net framework 2.x components. Any idea how to fix this I have both VS 2005 and VS 2003 installed on the PC. Alicia That's not good. This may be a collision of 2 things: 1. VS 2003 can't debug an app that loads the 2005 CLR (V2 ...Show All

  • Visual Studio Populating Crystal Reports PrintOptions object from C# code

    I want to use the PrintToPrinter function to print a Crystal Report. I am attempting to populate the report instance's PrintOptions properties with the results of a PageSetupDialog, specifically the PaperSource, the PaperSize and the PrinterName properites. The results from the user's selection of options from the PageSetupDialog are captured in an array of objects, where dialogPageSetUp is a PageSetupDialog object: ------------- code follows ---------------------------------- pageSetUpResults = new object []{ dialogPageSetUp.PageSettings.PaperSource , dialogPageSetUp.PageSettings.PaperSize ...Show All

  • SQL Server Backup Restore Fails

    Hi, I ran a backup procedure and BAK file created. I moved the file to another server, tried to restore and  failed with following error: " Cannot open backup device 'C:\*****.bak'. Operating system error 5(Access is denied.) " I checked the file on the original server and the file is accessible: I can see its content with RESTORE FILELISTONLY command. Any clues Thanks, Mark Hello Mark Are you using the Restore dialog to do this operation or are you using T-SQL Either case, ensure that the account under which SQL server service is running has access to the 'C' drive. [Venkat] This posting is provide ...Show All

  • Visual C# Multicast delegates with IEnumator and yield return?

    Hello, I am trying do set up a multicast delegate to split my yield returns for a WebTest I am writing, but only the last delegate is firing.  Is this a known problem, by design, or am I doing something wrong Thank you, --ben hii all, First time I am just learning Delegates in c#. I have faced a conceptual problem. In books it is written that A Multicasting Delegate should have a return type of Void unless it will throw a run time exception. But i am written a code snippet with a Multicasting Delegate with a string return type .But it is not throw any exception at all. Can anybody tell me what is ...Show All

  • Visual Studio Express Editions SerialPort_DataReceived to RichTextBox control in VB2005

    Hi I have been having a difficult time finding the proper way to pass string data that arrived thru the serial port by way of the DataReceived event , to a RichTextBox control on the main form. Moving from VB6 to VB2005 without using the automatic conversion helpers, has been more difficult that i hoped. I have examined lots of newsgroup posts, looked at posted example code and still I am having trouble. Some examples work, but appear to be automatically converted VB6 apps with Definstance properties and other items. I would rather understand the proper way to implement this starting from scratch ,using the form designer and the Ser ...Show All

  • Visual Studio Express Editions DotNetNuke install problem or too many starter kit installs

    The DotNetNuke Starter Kit 4.0.2 does not show up in the "My Templates" of the "New Web Site" window of VWD (An icon titled "DotNetNuke Web App..." per the documentation). I am wondering if there is a limit to the number of "New Web Site" templates that can be added and show up in the "My Templates". I have installed previously eight (8) starter kits and ASP.NET Site templates. With the "Search online templates... icon, that makes nine evenly spread icons in the "My Templates" section of the "New Web Site" window of VWD. All installed correctly except the DotNetNuk ...Show All

  • Visual Basic getting files from FTP

    Hey, I got a Windows application that processes Excel files and transfers all data to a DB. These Excel files at the moment are being sent to Malta from Germany via FTP........ the user copies the files to another location (as the FTP directory is not accessible) and then browses for them using an Open File Dialog.... the application then does the processing needed! I would like to automate this a bit more. 1. How can I access the FTP server (NOT anonymously!) 2. How can I check if the folder is empty 3. How do I retrieve files (preferably removing them from the FTP server and placing them in another location) Thanks for your help ...Show All

  • Visual Studio Team System Visual Studio Team Foundation

    Is it possible to use Visual Studio Team Foundation  with VS 2003 Thanks for the response. Hope you be able to get that working with .NET Framework 1.1. Looking forward for this tool. ...Show All

  • Visual Studio Team System PRoject ALert not working in Team foundation Server

    hi Project alert is not working. can anyone tell the procedures to configure that ... Thanks Rithu Could you please describe *what* is not working with the Project Alerts Did you check the check box next to an alert, enter a valid email ID and then click OK Was there no mail generated when the event occurred ...Show All

  • .NET Development Database UPDATE problem.

    Just a question. Im really wondering why my sample database program wont update. It will say that it has updated the actual database but when i double check, it didnt. I am not using the command builder coz i want my own sql codes. When I test using the query builder, i will see the data being updated or added but when i use my own program, it really wont. Actually i have this one sample database program that updates ok. I just dont know why I cant do it again. Im really pissed off thinking abt it the whole night. I ommitted the INSERT and DELETE commands since they dont work too. h ...Show All

  • Visual Studio 2008 (Pre-release) HierarchicalDataTemplate not finding correct public Type

    For some reason I can't get my Grid to find my DataType in the datatemplate. I confirmed the assembly was present and accessible via code-behind, but XAML refuses to recognize it, I also tried slapping the Assembly attribute onto the Mapping tag but to no avail. The DataContract type is Franchise in the Log.DataContracts namespace. < Mapping XmlNamespace="Log" ClrNamespace="Log.DataContracts" > < Grid x:Class = " Client.WPFControls.Page1 " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " xmln ...Show All

©2008 Software Development Network