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

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

StijnVU

Member List

highgameapple
Newland
ndRandall
stuthom
Dmitriy Nikonov MSFT
SnakeSV
bbostic
OwenSmith
minimalism
Zahid Aziz
Deepak Raghavan
Jean van Schalkwyk
Briedis
Leo H
Marius Dumitru
Huwwuh
Shepherd
MarkleSparkle
Drae
Eric G Wang
Only Title

StijnVU's Q&A profile

  • SQL Server Error in execute sql task

    I get the following error when trying to execute an sql statement in oracle and returning the results into an object variable with the execute sql task. Error: 0xC002F210 at Execute SQL Task, Execute SQL Task: Executing the query "select <columnlist> from <tablename>" failed with the following error: "The SelectCommand property has not been initialized before calling 'Fill'.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. It executes fine if I select no results or first row but I ...Show All

  • Visual Studio Team System Fail Team Project creation

    After installing TFS Beta 3, everything seems ok. Can connect to it, manage it, etc. However I cannot create projects sucessfully. When I try to I get this (excerpt from log): Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: Unable to connect to the Windows SharePoint Services at TEAMSYS1 Exception Details: The Project Creation Wizard was not able to connect to the Windows SharePoint Services at TEAMSYS1. The reason for the failed connection cannot be determined at this time. Because the connection failed, the wizard was not able to ...Show All

  • Visual C# Class View Add Method / Property Wizard

    Hello! This is my first time using Visual C# IDE, - Express edition. I would like to find out if the C# Express edition Wizards (or are they called templates) are available I see where one can add the code, but this is the error after typing in the code.  The build fails as expected Error 1 Expected class, delegate, enum, interface, or struct ... public long Add( long val1, long val2) { } public long x; The (underlined red) error is the return type or the type My project is a class library - DLL. I do not see the Add Method or Add Property in the Class View - right click on the Class1 ...Show All

  • Visual Basic Replacing and Writing to a .doc

    I have this dee.doc that has a [name] in it i want to replace that with Demetrius and write that line to a new word doc called deee.doc that i am creating...It creates the document but it does not write to the file the info .....what am i missing...any help thanks Dim sr As StreamReader = New StreamReader("C:\dee.doc") Dim doc As FileStream = New FileStream("c:\deee.doc", FileMode.Create) Dim sw As StreamWriter = New StreamWriter(doc) Dim str As String Dim bl As Boolean = False Dim str1 As String bl = False Do While Not bl str = sr.ReadLine() ...Show All

  • SQL Server Reporting Services Setup Issue

    Hi All, I am running setup.exe (RS 2000 Enterprise), and ra issue during the following step - "specify credentials that are used at run time by ReportServer service to connect ot SQL Server Instance..." My local SQL Server is running under "Local System" account, and I have SQL Server 2000 SP4 installed on Windows Server 2003. Any help to resolve this setup issue is much appreciated! -Lawrence You need to provide credentials that Report Server services will use in order to access the catalog at run-time. You can choose to have the services impersonate their associated a ...Show All

  • Windows Forms Mad about GroupBox!!!

    Hello, What I am trying to do is to add some radio buttons to a GroupBox dynamically. The number of radio buttons to add is differnet from time to time so I used a foreach loop to add the buttons to the GroupBox. But unfortunately, the GroupBox displays nothing apart from its border. Here is the unworking code: GroupBox choiceGroupBox = new GroupBox(); ...Show All

  • Visual C# Constructor Chaining in C#

    Dear All, I am actually new to Object Orientated Programming. I was just studing about Constructors  and I came across the concept of Constructor Chaining.Can some 1 explain me about what is this constructor chaining.I know it means that we can call one constructor from another constructor. I have tried 1 example which is as follows: class Class1 { private string e_name,e_JobTiltle,e_Address ; private Class1( string name, string Title) { e_name =name; e_JobTiltle=Title; } private Class1( string name, string Title, string Address) { e_name =name; e_JobTiltle=Title; e_Address = Address; } Now how can I impleme ...Show All

  • Smart Device Development Problem receiving SMS messages

    Hi all, I've tried to run the sample CaptureSMS from "Receiving SMS Messages Inside a Managed Application" but I get a MissingMethodException at the function call to DllRegisterServer(). I am trying on my PocketPC emulator of PocketPC2003 SDK. Please help me as soon as possible, Thanx in advance.... You could use DumpBin tool on native wrapper DLL you're calling into to make sure it's compiled for correct CPU type and exports required function. Please remember old emulator is x86 but new emulator is ARM, make sure native DLL is compiled for right CPU. This show usage of DumpBin: http://groups.google.com/ ...Show All

  • Windows Forms Borderless Form -- Right Click Menu of Taskbar

    Hi, this is silly but no right click menu (maximise, restore, close, etc) comes up, when i right click on the icon of the borderless form in the taskbar. i have set showInTaskbar to true for the borderless form and  border to none. Also how can we change the right click menu of the taskbar for our programs, say add another item (always on top) under the close option. thanks in advance. Ok Mick, thank you, I was also thinking about a way of letting WS_THICKFRAME but forcing the system border not to be drawn. Your solution seems good, yet it's true it's a problem if it doesn't work on Vista. I'll ...Show All

  • Windows Live Developer Forums Contest Deadline Question

    Hello, I was wondering whether the launches for our applications will count past the 31st, until the winners are announced or will the applications be shut down for public access after the 31st My application should be complete on 27th-28th (before 30th for sure) and I would also like to get a chance to get some feedback (as well as launch points) from visitors and I (as well as most other people who entered this competition a little late) would greatly appreciate if the application launches would still be counted after the submission deadline. Thank you. We'll stop counting launches towards the contest criteria as of the ...Show All

  • SQL Server SMO Script Method

    Does anybody have any detailed information on the SMO script method   I am trying to write a VBScript that will script the logins on a SQL 2005 server. Thanks! Eric You can not use VBScript to call SMO. But you can do the following through C#: static void Main( string [] args) { Server srv = new Server ( "MyServer" ); //Yukon srv.ConnectionContext.LoginSecure = true ; srv.ConnectionContext.Connect(); srv.DefaultTextMode = false ; try { Database db = srv.Databases[ "customer" ]; Transfer trans = new Transfer (db); trans.Options.IncludeIfNotExists = true ; trans.CopyAllObjects ...Show All

  • Visual C# Any good examples of how to use Applications settings

    Hi, I'm trying to use Application settings to persist the size of a window between sessions in c# Express. I've tried following the help files but it's all way too complex - I can work up to comlpex once I've got something working!  Does anyone know if there is a simple 'how to' anywhere, covering the basics What code do I need to add (to save ) What are the steps in the designer Many Thanks for any help Baffled The most painless and simple example of this is at: http://www.microsoft.com/uk/msdn/events/archive.aspx#section_p5 Go to the Winforms and and Smartclients section and view the preserving appl ...Show All

  • Visual Studio Express Editions HelloWorld.exe doesn't run

    Hello there, I'm using Visual C++ Express Edition the first time. Thus I was making a HelloWorld.cpp by chosing Win32 Console Application. I'm also using the latest PSDK for x86. My HelloWorld.exe runs within the IDE and also within a command prompt on my computer where Windows XP is running. Unfortunately it doesn't run on another computer I have with Windows XP. What could be wrong Any suggestions are welcome. :) Thank you for your help. CU, common Another thing that might be happening is that you need to install the SxS binaries on the other machine as well or you will have to link statically to the ...Show All

  • SQL Server SA account Locked out

    I have been using SQL2000 for a number of years and the company I work for needs a new system so I decided to install SQL2005. I installed SQL2005 without any problems and set a complex password for SA. I tried to log on and had to make several atempts as I remmebered the password after the SA account got locked out with the following message: Login failed for user 'sa' because the account is currently locked out. The system administrator can unlock it. (Microsoft SQL Server, Error: 18486). The problem I have is I cannot log onto SQL at all as it is not logging on with windows authentication either! How do I unlock the SA account ...Show All

  • SQL Server CLR and SQL 2005 Compact Edition

    I believe that there is a also a new SQL database for the PDA. Am I right Is it also possible to use (CF) .Net code inside this edition Yes. It's called SQL Server 2005 Mobile Edition. This works on Windows Mobile devices (PocketPC and SmartPhone). You need to install .NETCF 2.0 (compact framework) on the device for using SQL Mobile. You can develop mobile applications using Visual Studio for Devices. SQL Mobile is part of SQL Server 2005 or Visual Studio 2005. You can get more information here: The SQL Mobile page on MSDN :             ...Show All

©2008 Software Development Network