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

Software Development Network >> Andy Tischaefer - MSFT's Q&A profile

Andy Tischaefer - MSFT

Member List

Sebastian Kralemann
MS_ISV
Jack Stone
Amith
BarryMarc
Scott Blood
kguyot
harrysatya
Lars K
Ben666
Quentin Lee
eeChaosian
matttypething
rumo
zulluz
Claudio Perrone
Stefan Tresch
Omar Abid
nwilliams
JudiSue
Only Title

Andy Tischaefer - MSFT's Q&A profile

  • .NET Development Response is not well-formed XML

    Hi, I'm try to call a webservice for a asp.net 2.0 page and it works ok... except for the first time I call the webservice after a have build the application... I recive a exception Response is not well-formed XML ... Can somebody tell me why this happens it only happens the first time after that it works fine... Obs: I'm using a plug-in WebApplications insted of WebSites. ...Show All

  • Visual Studio Official VSL feedback and suggestions thread

    The Visual Studio Library (VSL) is a new addition to the Visual Studio SDK 2005-10 (VS SDK), and was not previously available in the VSIP SDK.   VSL is a C++ source library, primarily targeting the Visual Studio Platform, which extends the Active Template Library (ATL).  A Power Point presentation given at the VSIP dev lab can be be found here .   Thus far the contents of VSL have been solely driven by the needs of the four new C++ reference samples included in the VS SDK, so many classes are not as fully featured as is possible.   Content will continue to be added to VSL, as needed by the C++ samples; howeve ...Show All

  • Windows Forms Changing Parent Items From Child

    How can I change parent items such as menu items from a child First of all, the menu items aren't going to be hidden, right  They're disabled.  And, they will be disabled if there aren't any children. That's the point. You update the availability of the menu items each time you pull down the menu, so that if there aren't any&nbs ...Show All

  • Visual C# GDI form transparency problem

    I'm trying to draw a transparent form using GDI, by overiding the OnPaint and OnPaintBackground event handlers. This technique works well enough on the first draw,and it produces a nice result, however, on subsequent draws, it works less spectacularly. For some reason, the screen is never cleared, and when it redraws the new things are composited ontop the previous draws, making the transparent images darker and darker. Here is the contents of protected override void OnPaint(PaintEventArgs e) { Graphics g = null; Assembly assembly = Assembly.GetExecutingAssembly(); Point point = new Point(400,400); backBuffer ...Show All

  • Visual Studio Express Editions Problem Using bootstrap installer and registration

    I read through the newgroup hoping to find a solution but ... Here's the system: AMD 64 dual core - Dual processor - 8GB RAM - 80GB free drive space Running XP64 Here's the scenario: 1. Was able to surf the web, start the download of VB Express but the bootstrap wouldn't download any data. 2. Followed the instructions and downloaded the .img file, then installed from the CD image. 3. VB Express installed fine, ran it and the Info window in the center says I have no internet connection.  Of course I'm surfing the net while the message is up. 4. Tried to register and the pages keep failing to come up.  I even tried going to prof ...Show All

  • Software Development for Windows Vista Host Workflow in Windows Service

    Is it possible to host workflow in windowsService if possible how John, Tomas Restrepo has also created some nice Msmq workflow activities. You can just drag and drop a Msmq Receive message activity in your workflow. http://www.winterdom.com/weblog/2006/10/20/MsmqActivitiesV11Released.aspx The part that I'm not too sure about is how to have multiple worklow instances processing messages from the queue. It's easy to start multiple workflow instances (and wrap the msmqReceive in a while loop ) Once the queue is empty the workflow should 'sleep' till the next message arrives Is that possible I wonder if the ...Show All

  • Visual C# ExecuteScalar erro

    { SqlConnection conn = new SqlConnection (); conn.ConnectionString = "Data Source=(local);" + "Initial Catalog=bd;" + "Integrated Security=SSPI;" ; SqlCommand sqlComm = new SqlCommand ( "SELECT * FROM utilizador WHERE user=@user;" , conn); sqlComm.Parameters.Add( "@user" , SqlDbType .VarChar); sqlComm.Parameters[ "@user" ].Value = user.Text; conn.Open(); Int32 teste = 0; teste = (( Int32 ) sqlComm.ExecuteScalar()); --> ERROR {"Object reference not set to an instance of an object."} conn.Close(); } wha ...Show All

  • Visual Basic Can i sell what i make

    can i sell what i make with visual basic 2005 beta 2 App will not be time restricted but the IDE will stop working I think. Also, the license says that the end user has to obtain the target from Microsoft which means that the .NET Framework Beta 2 may expire which means that your app also does not work. A good idea would be to change the date on ur machine to May 1th 2006 and see what happens - that will eliminate all questions :) In case you do not want to try on ur dev machine, install Virtual PC and try on that: http://www.microsoft.com/windows/virtualpc/default.mspx Regards, Vikram ...Show All

  • Software Development for Windows Vista Tracking and Monitoring of dynamically updated workflows

    I am working on an application that dynamically updates a workflow and adds activities at runtime. Now I tried to track those workflows and wanted to view them with the Workflow Monitor. The bad thing about that is, that the sqlTrackingWorkflowInstance.WorkflowDefinition throws as NullReferenceException as it is not able to build the dynamic workflow. All activity events of the added activities have been tracked correctly, but I can't build the WorkflowDefinition. Is there any way to construct and display the workflow as it executed in the runtime with all the dynamically added activities Thanks for any answer. ...Show All

  • .NET Development connection string + webservice

    Hello, I am trying to make a connection to my SQL2005 database through webservice. For some reason it doesn’t work. Here is the code. I would appreciate it if somebody could help me with this. [ WebMethod ] public bool TestConnection() { OleDbConnection conn = new OleDbConnection (); conn.ConnectionString = @"Provider=SQLOLEDB;Data Source=.\SQLEXPRESS;AttachDbFilename=C:\SQL Server 2000 Sample Databases\NORTHWND.MDF;Integrated Security=True;Connect Timeout=30;User Instance=True" ; try { conn.Open(); conn.Close(); return true ; ...Show All

  • Windows Forms How to draw a control on custom form designer with variable size

    Hi Guys, I am trying to draw a control picked from the toolbox on to the designer surface by means of defining the first top-left and dragging the mouse cursor to the right-bottom corner point. I do not know how to do this, the drag/drop from the toolbox works fine. Is there some kind of settings i have to define first Thanks Michael It does not work. It draws a rubberband rectangle, the thin one. What i have got to have is the thick one. Thanks anyway for yhour response Michael ...Show All

  • Windows Forms How to customize the selection border of selected control in VS2005 (WinForm)

    Well, What I need is I make a custom control in the winform, and when drag it into the form in the design time, I don't want this control has a selection border which is a rectangle with small boxs can resize this control. I once used the code like this, public class MyControlDesigner:ControlDesigner { public MyControlDesigner() { // // TODO: Add constructor logic here // } public override SelectionRules SelectionRules { get { SelectionRules rules; rules = base.SelectionRules; rules = System.Windows.Forms.Design.SelectionRules.None; return rules; } } } and it works well under .net 1.1, but in .net 2.0 + ...Show All

  • Visual Basic Compiling VB6 from command line

    I'm currently writing a build script that will compile all VB6 components in our system but I cannot get the script to pipe any build errors into a log file. Whenever there's an error during make, an error window pops up and I have to press OK for the script to continue to the next component. What can I do to make the error messages get piped to a log file and make the script go on to the next component Thanks in advance! These forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=micro ...Show All

  • SQL Server OLEDB error while trying to import MDB data into SQL 2005

    Hello, I am getting an error while trying to import data into SQL 2005 from an existing Access MDB database. When I try this on another workstation there are no problems and the data is imported successfully. Could someone tell me what to look for or what setting I have incorrect. On the workstation with the problem I had removed SQL 2000 Personal Edition and installed SQL 2005 Standard Edition. Also, I have both Visual 2003 and 2005 installed on this workstation as well. Thanks TITLE: SQL Server Import and Export Wizard ------------------------------ Could not set up data flow connections. The connection type "OLE ...Show All

  • Visual Studio Express Editions Failed To generate a user instance of sql server

    Problem : i am using Microsoft Visual Basic 2005 Express Edition and SQL Server 2005 Express Edition. Now i connecting to sql Server via Visual Basic 2005. Once i create a new Connection (Use SQl Server Authentication) user Name sa and our password. But this connection generate "Failed to generate a user instance of SQL Server. Only an integrated connection can generate a user instance. the connection will be closed". How to solve this problem Hi there, On the screen where you define the database file to use and your user credentials (I believe the window has a title of "Add Connection") there will ...Show All

©2008 Software Development Network