Software Development Network Logo
  • Windows Vista
  • Smart Devicet
  • SQL Server
  • Microsoft ISV
  • Visual FoxPro
  • IE Development
  • .NET Development
  • SharePoint Products
  • Game Technologies
  • VS Team System
  • Audio and Video
  • Visual C++
  • Visual Studio
  • Visual Basic
  • Windows Forms

Software Development Network >> Esther Fan MSFT's Q&A profile

Esther Fan MSFT

Member List

Ryan Schwartz
charnnarong_d
Saruk
MarkWHarrison
Henk B
Star1234
Geo725
PaulDev
ciocc
volleynerd
Ying06
CK12
Todd Virlee
jason.t
Cam70
sunny123
laboremus
Devin
DeamonX
rgabel
Only Title

Esther Fan MSFT's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. XNA is Visual C# express?

    when i click on the icon that says xna game studio ex press it opens c# express is that supposed to happen or should i reinstal tarkster2 wrote: when i click on the icon that says xna game studio ex press it opens c# express is that supposed to happen or should i reinstal Yes it is supposed to happen XNA is a framework. The development environment is added to C# Express. if you go to help, inside C# Express, -> contents and expand XNA you can find out a lot more info. ...Show All

  • SQL Server Creating a table from .NET

    I need to create tables from a C# code. I made a stored procedure hoping that I will pass a table name as a parameter: @tabName. The procedure executed in SqlServer All Right but when I called it from C# code it created not the table I put in as a parameter but table " tabName ." Otherwise everything else was perfect: coumns, etc. Here is my stored procedure. set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[CreateTableTick] @tabName varchar(24) = 0 AS BEGIN SET NOCOUNT ON; CREATE TABLE tabName ( bid float NULL, ask float NULL, last float NULL, volume float NULL, dateTimed datetime NULL ) END What went wrong Thank you. To be honest, I wouldn't expect the SProc you've listed to work the ...Show All

  • Visual Studio 2008 (Pre-release) How will the client come to know about the WSE settings used by service at server??

    Hi, We have created a web service and secured it using some policies of WSE 3.0. Now on the client side, we need to apply the same policy to the proxy of service, that is generated. So the question is , how does the client come to know about policy used by the service WSDL / or the proxy class generated does not have any information regarding policy used by service. Any pointers to, how the client would come to know about this . Thanks and Regards, anita. WSE 3.0 does not have support for WS-SecurityPolicy, which means your server has to send your client the policy file out of band. This help topic describes how you can specify security for the client. http://msdn.microsoft.com/library/default ...Show All

  • Visual Studio Express Editions No Common Controls Showing (Ex; Button, or Labels)

    I am taking a programming course this year in school and we were recommended to download Visual Basic 2005 Express Edition. We were also recommended to download Visual C#. C# works fine everything is shown that should be shown although in Visual Basic it is a whole other problem. In the toolbox on the left hand side no common controls are shown. For example the button or label items in the toolbox are nowhere to be found. I reset the toolbox and it stays the same as it is already. This is a link to how the toolbox looks. I have uninstalled it twice now and the same problem comes up. Any help on getting these functions in would be greatly appreciated, I need them to do my assignments for school. Now noti ...Show All

  • Visual Studio Express Editions Dataset Update to DataBase VB Studio 2005 Express w/ Sql 2005 Explress

    I've carefully watched the videos many times on how to use the Add Data Sources to bind my database to a form.  That works great.  When I run the app I can see the data I have input from ShowTable view on the form I created.  I can add and change data on my form also.  However, after closing the form and going back to ShowTable I see none of my additions or changes.  I've read all the fourms I could find already that addressed this issue, but I cant seem to find a fix that works in my case. Also, I dont know if it's relavent or not, but while in show table view, I get a big red exclamation point in each cell as I type.  Once I fill out the entire record everthing seems to fuction normally.  Changes ...Show All

  • SQL Server Remote connection not working using MSSMSE

    Im getting quite desperate and frustrated!! I have installed SQL 2005 Express successfully and can connect to it fine using Management Studio locally. If I try and connect remotely using Management Studio Im getting the old Error 10061 : The machine actively refused the connection! I have set it up exactly as per all documentation and help from the forums. Remote connections is on TCP and Named Pipes, I even have the firewall disabled. Im running it on Windows Server 2003 Standard. Any help would be really apriciated as i have tried everything!!! It would appear that the port is blocked or the server is not listening to 1433. I cant telnet to the port. How would I go about opening that up C ...Show All

  • SQL Server SQL Server does not exist or access denied.

    Server Error in '/orion' Application. Which SQL Server version are you using Beside from knowing that, make sure that you adressed the remote server the right way. It should be adressed with the right name / instanceName and (if you are not using the default port) the right port number, e.g ServerName,Portnumber or servername\instanceName,Portnumber If this does not help, write back to the forum which server version you are using. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Drillthrough: A data source instance has not been supplied for the data source

    I'm getting the dreaded "A data source instance has not been supplied for the data source" error when trying to load a drillthrough report. I'm using webforms and tyring to perform basic drillthrough functionality, where the main report displays a list of Reps and the drillthrough displays Rep Details. I'm using datasets that call stored procs. My dataset has one table. Here are the dataset details: File name: RepDetails.xsd DataTable: MyReports_GetRepDetails TableAdapter: MyReports_GetRepDetailsTableAdapter From the Report > Data Sources menu item, the datasource associated with the report file is: Name : RepDetails_MyReports_GetRepDetails Type: Database DataSet: RepDetails Table: MyReports_GetRepDetails Here's my ...Show All

  • Software Development for Windows Vista Retreive workflow properties

    Hi, I'm trying to retreive the value of a public property from a running workflow but the returned value is always null ! Example : args[ "MyProperty" ] = "toto"; WorkflowInstance instance = MyRuntime.CreateWorkflow( typeof ( StateWFTest ), args); instance.Start(); // here, MyProperty is set with the correct value. foreach (System.Workflow.Runtime. WorkflowInstance instance in MyRuntime .GetLoadedWorkflows()) { StateWFTest workflow = ( StateWFTest ) instance.GetWorkflowDefinition(); if (workflow != null) { String val = workflow.MyProperty; // Always return null !!! } } Any help or link to a sample or tutorial would be greatly appreciated. Thanks in advance, Hadrien ...Show All

  • SQL Server Logging dynamic SQL variable when EvaluateAsExpression=TRUE

    I am trying to use the idea as mentioned by Jamie at: http://blogs.conchango.com/jamiethomson/archive/2005/12/09/2480.aspx which is to build dynamic SQL using a variable evaluated as an expression. Set Expression= "SELECT * FROM MyTable WHERE MyColumn = " + @[VariableContainingFilterValue] Everything works fine. The entire package works. My next step is to log the variable so that I know, after package execution, exactly what SQL statement the package is executing. I tried to do it by a couple of ways in a Script task: 1) Dts.Events.FireInformation(0, String .Empty, String .Format( "SQL: {0}" , Dts.Variables( "SourceSQL" ).Expression), String .Empty, 0, False ) ...Show All

  • Windows Forms Windows forms C++ Samples

    hi, I understand that C++ under Visual Studio 2005 finally has a very capable RAD GUI builder, so I don’t have to use VB or C# to get the same results and thus in theory do it all with C++. (btw, congrats on getting an ISO language inline with .NET...a much harder job than with proprietary languages I’m certain). However, I cannot find any C++ samples actually built with the Windows Forms rapid development tools. I did down load the calculator app, but it clearly was not built using the tools, so of little use. Would someone advise me please where these C++ sample applications may be found Thanks very much:) link fixed see also http://www.codeproject.com/managedcpp/ http://www.c ...Show All

  • Windows Forms datagrid view

    i have a form with one datagrid view. And i inheritted the another form from that from. But in the inheritted form i cannot edit the datagrid view, all the roperties is looks readonly. So i changed the modifier to protectd friend ,public etc.. But its not working. But for other controls like list view and all i can edit in the inheritted form by just changing the modifier property . How can i edit the datagrid view Its by design. Please check the below link. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=152918&SiteID=1 ...Show All

  • Visual C# referencing a sqlDataAdapter

    I define an SqlDataAdapter to a sql database.table in one procedure (function) but intend to use it in another. The dataadapter will be used to execute an insert command many times but the detail of the connection string become apparent a few steps prior to the time when the InsertCommand actually works. I was thinking about using the dataAdapter in a function call as a parameter but I cannot do it since one of the functions on the way is a delegate or something. It has no accessible parameters whatsoever. It is a Winsock situation. The code works but I need to improve it to introduce many conveniences. I tried to create a class that stores "an object." So I store my dataAdapter.InserCommand. I thought I would get it and execu ...Show All

  • Visual Studio 2008 (Pre-release) Video Restart Button

    Hey All, I am making a WPF video player and it is working well. I have buttons to Play, Pause and Stop the video but now I want a restart button. Anyone know how to accomplish this Thanks, Dvl lee d wrote: MediaElement1.Position = TimeSpan.FromSeconds(0) My movie name is myMediaElement and I put this code in for the restart button: myMediaElement.Position = TimeSpan.FromSeconds(0); and nothing happens; the video keeps playing. I am doing a trace so I know my button is being fired. Any suggestions Thanks very much, Dvl ...Show All

  • Software Development for Windows Vista NetUserEnum call fails on vista when going across domains

    I have a parent and a child domain. The vista machine is in the parent domain, when i try to get the user accounts on the child domain rfom the vista machine its gives me a access denied (5) even though i am logged in as a enterprise admin. The same code that i have outlined below works on XP\2000 etc. I use NetWkstaGetInfo to get information of the users workstation. The (WKSTA_INFO_100) structure member (wki100_langroup) has the name of the domain (Parent domain in this case as the vista machine is on the parent domain) then i use the NetGetAnyDCName to get any domain controller on the parent domain. I run the NetGetAnyDCName again with the domain controller from the parent as the first argument to get a domain controller from the chi ...Show All

©2008 Software Development Network