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

Software Development Network >> Amanda Theo's Q&A profile

Amanda Theo

Member List

Tonpal
John_Nicholas_1982
cwfox
No-spam Sam
JefferyS
zoom14151
MrTufty
Ken Curtiss
Olepadre
Melipao
Derek Ekins
Tyfud
dinzana
Vanny
Jack Shoeman
_Matze_
chteng
Strivedi
amiratish
D Wagner
Only Title

Amanda Theo's Q&A profile

  • SQL Server Create File Option In File Connection Manager

    May be it's too late, but I think this requests could be scheduled at least for a SP1 if it's not possible for the RTM. 1) Execute Task without debugger: it would be very nice to be able to execute a single task without going in debugging mode. Just as you would ask "Start Without Debugging CTRL+F5" but for a single task 2) Customize default properties for task and component: when you drag a task on the package you get a default value for the properties that you could want to change; often I need to change the same property in the same way each time (for example I'd like to set the Batch Size for a OLE DB destination to 1000 instead than 0 ...Show All

  • Visual Studio Team System Installation Error 32000: Bisregedit.exe fail...

    Hi, I'm trying to set up a single-server environment where I have done the following: Installed Windows Server 2003 Upgraded to SP1 Installed IIS, enabled the Windows Firewall Connection Created a new user account on our corporate AD 2003, added it to local administrator group Installed SQL Server 2005 April CTP Installed Windows SharePoint Services w/ SP1 I have ran the stsadm utility to exclude Reports and ReportServer from SharePoint At this point I can browse http://localhost (SharePoint site), http://Reports and http://ReportServer . When I begin the TFS-install it installs ADAM successfully, but at the very end (98% finished or someth ...Show All

  • Visual C# How can I start or stop system service like MSSQLSERVER?

    How can I start or stop system service like MSSQLSERVER Normally I start system service in command line 'net start MSSQLSERVER' How can I start or stop a service with C# Certainly before you start a service we should detect if the service have been started, how to detect in C# Ops sorry. ServiceController is there! eg System.ServiceProcess. ServiceController sc = new System.ServiceProcess. ServiceController ( "Service name" ); sc.Start(); sc.Stop(); You just have to add a reference to System.ServiceProcess.dll I did that, worked fine. ...Show All

  • Windows Forms Adding TabPages?-Unlimited

    Hi. I was wondering if there was a way to add a tabpage with controls such as a webbrowser on it but when you fire the event again the controls are still there. Here is my code for the event: TabControl1.TabPages.Add(tb) tb.Controls.Add(wb) wb.Dock = DockStyle.Fill wb.Navigate(textbox1.Text) TabControl1 is the TabControl, tb is the new tabpage, wb is the new webbrowser, and textbox1 is the url box. When I fire this event twice, the first webbrowser dissapears and the new tabpage has nothing on it. I'm taking a guess that it's a naming problem but I'm wondering if there is another way to address it. PLEASE HELP! Thank you! ...Show All

  • SQL Server Error in TransactionOption in SSIS

    Hi, I was trying to maintain transactions between my tasks, so I set the TransactionOption property as Required to the Parent Container ( For Each Loop Container ). But I am getting the following error while executing my SSIS package. "Error: The SSIS Runtime has failed to start the distributed transaction due to error 0x8004D01B "The Transaction Manager is not available.". The DTC transaction failed to start. This could occur because the MSDTC Service is not running." I checked in my Windows Services and did not find MSDTC. Pls let me know if you have any solution for this. Thanks in advance. Regards, ...Show All

  • Visual Studio 2008 (Pre-release) CodeBehind gone?

    Has the ability to provide a CodeBehind compile at runtime source file been removed from WPF altogether used to be a CodeBehind element in http://schemas.microsoft.com/winfx/xaml/2005 None of the samples that use it work anymore. I do not believe there ever has been the ability to provide source code that is compiled at runtime. The x:Code element that allows you to put a block of code in your XAML file takes that block and inserts it into the .g.cs file corresponding to the XAML file as part of the compilation process, not during runtime. The x:CodeBehind attribute pointed to the corresponding code-behind file which helped too ...Show All

  • .NET Development My program hangs until SetProcessWorkingSetSize is called or app. minimized

    Greetings Full description of the problem you can see here: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=16535 My program generates "phantom" thread (neither one of my threads, nor one of async completion threads) after a few hours of normal work, and that thread consumes 100% of CPU time until program window is minimized or a call landed to Process process = Process.GetCurrentProcess(); SetProcessWorkingSetSize(process.Handle,-1,-1);   If someone knows what problem leads to this behaivor - please, help me.. [just linking in old threads] http://forums.microsoft.com/msdn/ShowPost.aspx PostID=16535 http://forums ...Show All

  • SQL Server problem with XML -> TABLE transfer.

    i got an XML source and 1 OLE DB destination i got an xml file < xml version="1.0" encoding="utf-8" > <Node> <Student> <Name> Daren </Name> <Address> France </Address> <Age> 27 </Age> </Student> </Node> and a XML schema file < xml version="1.0" > <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs=" http://www.w3.org/2001/XMLSchema "> <xs:element name="Node"> <xs:complexType> <xs:sequence> <xs:element mi ...Show All

  • Visual Basic error converting data type nvarchar to int...

    ...when I try pass date parameter to procedure on SQL 2005 can you help me Thanks The error message would appear fairly self explanatory - you are trying to pass a type nvarchar to a parameter of type integer, porbably calling something like a stored procedure This wont work. You need to match the parameter type Being declared in the stored procedure with the parameters collection item being passed. Showing code would definately help. ...Show All

  • SQL Server Using expressions in other expressions in SSRS 2000

    All the other reporting tools i've used have the ability to give the result of an expression (formula or calculation) a name (or load it into a variable) and include it in another expression (formula or calculation). I can't find this functionality anywhere in SSRS 2000, does it exist Thanks. You can create either a calculated field ( http://msdn2.microsoft.com/en-us/library/ms345330.aspx ) or a textbox that has the expression you want to reuse, and reference the field/textbox from other expressions ( http://msdn2.microsoft.com/en-us/library/ms157274.aspx ). ...Show All

  • Visual Studio Express Editions newbie question about adding a record to Access DB with VWD 2005

    I am new to VWD 2005 and doing some learning. I am using Visual Basic as the language. I have a pretty simple Access DB that I am connected to. I can Edit and Delete records fine. However, I cannot find how to be able to add records to the database with VWD2005. Any assistance or pointing to a good tutorial would be greatly appreciated. I am thinking there is a simple way to do this, but I am just missing it. Flanman   There are a million ways to do this depending upon how you have set up your datastructures. I can provide a way, but it may not match your datastructures   Let’s say that you have a table call ...Show All

  • Visual Studio VS 2005 Team Suite Install Failure

    I've been trying all day to get VS Team 2005 beta 2 on my XP Pro SP2 box. "The following component failed to install: Microsoft Windows Installer 3.0" Any help would be appreciated. Here's the log: [07/22/05,21:03:11] Microsoft Windows Installer 3.0: [2] Error code 1603 for this component means "Fatal error during installation. " [07/22/05,21:03:11] Microsoft Windows Installer 3.0: [2] Setup Failed on component Microsoft Windows Installer 3.0 [07/22/05,21:03:17] setup.exe: [2] ISetupComponent::Pre/Post/Install() failed in ISetupManager::InstallManagerHelper() with HRESULT -2147023293. [07/22/05,21:03:17] setup.exe: [2] Component error st ...Show All

  • Visual Studio Express Editions VC++ .exe file is not working on other machine

      Hi All,           I have created an .exe file using vc++ 2005 but when i copy this file to some other windows machine its not working. How can I make my exe of project portable on any windows machine   regards,      http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en This is a link to the redistributables. You need to install this on the target machine in order for your executable to run. The link above is for x86. ...Show All

  • Windows Forms Small problem (MDI form, ToolStripContainer) but very urgent

       Hello to everyone,   I have a small problem but it is a very urgent one. I have an MDI form which contains a ToolStripContainer for ToolBars and some others. The problem is appearing when I am trying to open a new child form. I cannot see this ChildForm because it is behind the ToolStripContainer of the MDIForm. Can you give a solution to this    Thanks in advance and HAPPY NEW YEAR. There is a MdiClient control but it's not in the toolbox. Add it in code to the ToolStripContainer.ContentPanel.Controls collection and dock fill it. ...Show All

  • Visual Studio Change Report Datasource at Runtime ???????

    If CRVS is to be used in the development of Visual Studio-based software products , one must be able to dynamically set the report data sources at runtime. However, I have found no clear way to do this, in either the documentation or on the web. Say it isn't so !! TIA, Karl Karl, it ain't so! You can, indeed, change the data source at run time. In fact there are numerous articles on the web to support this as well as several walk throughs on both MSDN and BusinessObjects websites. My favorit of course is Crystal Reports For Visual Studio 2005 - Data Connectivity Tutorial: Connecting to Object Collec ...Show All

©2008 Software Development Network