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

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

AliceSee

Member List

Zoiner Tejada
Ron Wright
Robert*
Alex_82
RogerV
J Mac M
glassman324
RamonS
Buffy6
Ameya Limaye MSFT
vishal aptel
Soeren D.
Bob2unlimited
DaSteph
tqlashot_kk
iiiwabibitoiii
Nicolae Moanta
AlbertoD
DeltaQ
Peter de Jong
Only Title

AliceSee's Q&A profile

  • Software Development for Windows Vista Documentation for MSH in WinFX SDK January CTP

    Hello, I finally suceeded in installing the entire January CTP SDK of Win FX, the run time components, the Vs.NET additions for WWF ,the CTP Of Visual studio .net code named Orcas, Expression (both the designer and the interactive designer). All are working fine and without any problem. But when i want to view some information regarding the documentation, I keep getting this dialog box error. --------------------------- Error --------------------------- A Runtime Error has occurred. Do you wish to Debug Line: 103 Error: Could not complete the operation due to error 80041001. --------------------------- Yes No ------------------ ...Show All

  • Windows Forms undo/redo

    how do i implement undo/redo features in C# Well, there is more than one way to do this. And some actions may be difficult to undo or redo. A considerable amount of time should be spent in your architectural design phase to make sure that you can support this. For example, let's say the user deletes a node in your tree.  Wha ...Show All

  • SQL Server Trying a concantenate a set of results from a query in SQL Server with multivalue parameter

    Help! I am trying to concantenate a single return line from table values in SQL Server 2005. I can get close, but not get any version of my code to work. I had a stored procedure working, but client needed ability to make multiple selections. So I am trying to rework the code into a select parameter. This is current version: Declare @t Table (YouthID int, CurMeds nvarchar(150)) Declare @CurMed varchar(100) Declare @ArrayList varchar(200) Set @ArrayList = ' ' Insert into t (YouthID,CurMeds) Select YouthID, MedDosage + ' ' + MedDescription As CurMeds From TblMedicatiions Where (YouthID in(@YouthID)) if (@@ROWCOUNT = 0) begin insert ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Error in installing Pre-things...

    Hello guys! After done some programming and felt myself as I COULD jump into another little subject without leaving Programming totally alone I came here to test the XNA Build... I had to install many things firstly... It didn't detact my two versions of Visual Studio Express C#/C++. This is the one that is given me errors: Microsoft Visual Studio 2005 Premier Partner Edition Installer As its installing... And I cannot see anything while it do that I get: Error 1311.Source file not found : C:\Documents and Settings\Adminstrator\Desktop\_1519_RTL_x86_enu_VSCC_Help_Collection.cab. Verify that the file exists and that you ha ...Show All

  • Windows Forms Dataset mode?

    In web service, how could i realize that the dataset is in insert,update or delete mode    More info: Pretend some changes happed in dataset in client side. In my program the response of the web service for each case (insert,update or delete) must be deferent. now i want to know how could i figure out what was the changes in dataset whether&n ...Show All

  • Visual Studio Express Editions GetPixel from a WebBrowser control?

    Hello, once again Microsoft. I need help with my WebBrowser control. You see, I would like to be able to grab a specific pixel from it. I've tried to declare the GetPixel lib (GDI32) as I did in Visual Basic 6, which I got pretty used to. That didn't work, so now I need some swifty code to do it. Maybe capture the WebBrowser to an image an use the .GetPixel property I just don't know. Please tell me what you know, and help me!  - Mathy     I don't think so. My guess is that you have the API call wrong. I use getpixel a lot.   Here's a Vb2005 Module with a call to get Pixel:   M ...Show All

  • Visual C++ Error: "Reference mscorlib.dll was not found on the References path."

    I just installed VC++ .NET 2003, and am working through the tutorials in the book included with the product, "Getting started with Microsft Visual C++ .NET version 2003." I'm on page 20, and trying to build a new "Console Application (.NET)", but receive the error, "Reference mscorlib.dll was not found on the References path." and my project is not built (animals.cpp is not built) so I can no longer follow along with the tutorial. I've run through the instructions step by step now at least a dozen times, but still receive this error. The file it is looking for (mscorlib.dll) is in the following locations: C:\WINDOWS\ServicePackFi ...Show All

  • Windows Forms SplitContainer and Scrolling inside the SplitContainerPanels

    Hi, I recently discovered the new SplitContainer control in VS 2005 BETA2. I want to design some kint of GUI and therefore added a SplitContainer control to a form (Dock = Fill; Orientation=Horizontal). I then added a GroupBox (Dock=Fill) to each of the SplitPanels. I set the MinSize properties of both GroupBoxes to my desired values and the AutoScroll=Ture of the SplitPanels. My indended behaviour is that if I move the splitter such that the actual size is smaller than the MinSize of the GroupBoxes, then the SplitPanel containing the GroupBox shall get the ScrollBars (due to AutoScroll=True) so that the user can scroll. But upon moving the ...Show All

  • Windows Forms Simple Data Binding of two TextBox controls to an array list source. Update Problems with the TextBoxes.

    Hi, I tried two bind two TextBoxes with simple Data Binding to the same List Source. The List Source is an array containing 10 objects of class mYSource (See code example). Use Visual Studio 2003 or Visual 2005 -> same result. textBox3 and textBox4 are bound to the List Source myDataSourceList . richTextBox2 displays the properties of the actual selected DataSource instance in the array myDataSourceList .   Change the "Name" via textBox3, set focus with mouse or TAB to another control. The DataSource is correctly updated ( see richTextBox2 , displaying the data sou ...Show All

  • SQL Server Show multiple order records in single row

    I have two tables CompanyTab and OrderTab .CompanyTab table contain one record for each client while OrderTab table contain multiple orders for clients. I have data in both table like CompanyTable ID Name 1 name1 2 name2 OrderTable OrderId CompanyTabID 1 1 2 1 3 1 4 1 In my query I want to show all orders in single row. ID Name Orders 1 name1 1,2,3,4 2 name2 null Is anybody can help on it. Thanks Arvind There is no easy way to do this in versions before SQL Server 2005. You could write a CLR aggregate in SQL Server 2005 that performs the string concatenation. But this method has it's own limitations. For example ...Show All

  • Visual C++ MFC extension DLL project with /clr option causes link error on _DllMain

    I get link errors mfcs80ud.lib(dllmodul.obj) : error LNK2005: __pRawDllMain already defined in DllMain.obj mfcs80ud.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already defined in DllMain.obj The project options are MFC extension DLL /clr option (except the source file with my DllMain implementation) UNICODE character set   I am using VS 2005 Std Ed. and after building a couple of times started getting the following error: Error 2 error LNK2005: _DllMain@12 already defined in MSVCRTD.lib(dllmain.obj) mfcs80ud.lib  Which seems related to earlier in this thread as a bug in ...Show All

  • SQL Server ExecuteSQL Task with Parameters

    I have an insert statement that i am trying to parameterize based on a variable.  I have tried: INSERT MyTable(Col1, Col2, Col3) VALUES(1, @MyParam, 3) INSERT MyTable(Col1, Col2, Col3) VALUES(4, @MyParam, 6) as well as: INSERT MyTable(Col1, Col2, Col3) VALUES(1,  , 3) INSERT MyTable(Col1, Col2, Col3) VALUES(4,  , 6) The parameter is defined in the task.  It fails consistently.  The error in the output shows the SQL without the parameter replaced.  Any ideas Thanks, Chris Hi Chris, Were you able to find any solution for the problem... I did somewhat same routine what you did using OLEDB connection. ...Show All

  • Visual J# Error Configuring Web Site

    I am using Visual Studio 2005 Beta 2 - I have completed Soup-to-Nuts 1 thru 9 doing them in Visual J# and have had to create all added code and files that appear from one lab to the next, not to mention the problems with the differences in ADO .Net with datasets and table adapters anyway I have go thru that, now Lab 10 deals with Web applications so I decided to revist the Lab "Creating ASP.NET Web Applications with J# - Part 1" I had already done this virtually with VS 2003 but now want to do it on my machine using VS2005  -  I am running into a problem right away   for create new project it ...Show All

  • SQL Server TargetServerURL for named instance?

    Hi There I am running the latest Sql Server 2005 CTP with reports server installed. I am following thorugh the Reporting services tutorial on 2005 BOL. I am at the publishing report step: The tutorial stipulates that under the project properties the url is as follows http://servername/reportserver or http://local/reportserver  for TargetServerURL. The problem is that i am running sql server 2000 and 2005 on my machine. So the named instance for 2005 is called SEANLO\SQLSERVER2005 and the reportserver database is named ReportServer$SqlServer2005 in that instance. Because 2000 is my default instance. As a result i am having difficulty add ...Show All

  • Smart Device Development CF Today Screen example

    Hey guys, I have tried to get the following to work; http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/ today scrn.asp But there seems to be files missing... Could someone point me in the direction of a quick start on building Today Screens... Thanks Keni Version 7.1 is vs2003, and You are going to use wizard with vs2005. I think, it is not possible directly, You should fix wizard for vs2005 support ...Show All

©2008 Software Development Network