MAGEngine.NET's Q&A profile
SQL Server Wishlist: MOST WANTED Tasks, Sources, Transformations, and Destinations?
Until there's an Integration Services 2.0, what custom components would you most like to see examples of The documentation team is starting work on the 2nd Web refresh of Books Online and SQL Server samples, anticipated for release around April, and may be able to incorporate some requests as samples or BOL topics. I scanned Kirk's "Requests" thread and, although many requests are for tweaks to existing SSIS widgets, I noted the following ...Show All
SQL Server Overwriting SSIS package logs
Is there a way to set the SSIS log provider for XML files to overwrite each time the package runs ...Show All
Visual Studio Script Error on Help Collection Manager page
When I call the Combined Help Collection Manager I receive two script errors #1 Line 101 unterminated string constant #2 Line 150 splitScreen is undefied Hello Michael - thank you for posting. We've been made aware of this issue in another thread. We have now created a fix, which is in the process of being published in a KB article. I will post a link to the KB article once it is live. Can you t ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Players move faster at higher framerates
Okay, this is really bad. Clearly, a hard-coded "2" that's applied to my character's "Left" property on every frame render isn't going to cut it. Obviously, the game will run slow on crappy hardware, and there's not much I can do to prevent that. But the game shouldn't run faster on really good hardware! How can I cap the movement speed, or better yet, guarentee a certain speed within reason I can already calculate frames per second, and h ...Show All
SQL Server Using more than one CTE in a view
Can I have a view selecting data from more than 1 CTE in a view. You can defined multiple common table expressions in one WITH clause. Ex: with a as ( select i from tbl1 ), b as ( select i from tbl2 ) select a.i from a join b on b.i = a.i; See BOL for more details on the syntax. ...Show All
Visual C# how to set default dataGridView row Height
I am using a DataGridview while i am setting the height from the code it is not working if (dgviewSearchResults.RowCount != 0) { foreach (DataGridViewRow row in dgviewSearchResults.Rows) { row.Height =5; } } i am using the above code But it is not working for me ItemCreated event not exists in dataGridView Events can u please say More Descriptive. ...Show All
Smart Device Development Device screen dimensions in compact framework
Hello guyz, can any one plz help me. How to get the device screen dimensions in compact framework. You can use the Bounds property System.Windows.Forms.Screen class which is supported by the .NET Compact Framework (according to the documentation). For more info, take a look at http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScreenClassTopic.asp and ...Show All
SQL Server SQL Agent Failing when trying to run my SSIS Package
My SQL Agent was working fine. Now when I try to run it, it failes when trying to run my SSIS package. I looked in the logs, and job history, no luck in finding any critical errors. My SSIS package runs fine through VS 2005 in debug mode. Here are the only errors: 01/04/2006 09:53:48,,Warning,[396] An idle CPU condition has not been defined - OnIdle job schedules will have no effect 01/04/2006 09:53:48,,Warning,[260] Unable ...Show All
Visual C# .Net 2.0 Terrarium Status
What is the status of Terrarium for .Net 2.0 There is a better play to ask this question, in the terrarium forum: http://forums.microsoft.com/msdn/default.aspx forumgroupid=2&siteid=1 ...Show All
.NET Development HttpWebRequest. "Keep-Alive" header disappears after a while :(
Hi everyone! I have searched for solving this problem, but haven't yet found the solution for this problem. Hope i'll find them in this forum. So, I have timer and every minute i send a request to the server. First time header "Keep-Alive" displays correctly in the request (i use http sniffer to analyse requests), but in next time it disappears. There is the code of the problem point: Dim oReq2 As HttpWebRequest = ...Show All
Visual Studio 2008 (Pre-release) Presentation Host has encountered a problem and needs to close.
Hi, I am creating a Avalon Express Application and I have one button which has the click event and I am writting the code in the respective page.cs file. < TextBlock DockPanel.Dock = " Top " Margin = " 15,10,10,10 " > < Button Width = " 60 " Height = " 30 " Click = " btnSave_Click " >Save </ Button > </ TextBlock > The application is loading, but when I am clicking the button it says that "P ...Show All
Smart Device Development designview with multiple framework from chris tacke
Hello, 1)if I implements this, everything works fine. In the code there is something like if designtime end I suppose this is to get design view but this doesn't work. I have to comment everything from the stackform and uncomment the normal form so I can see designview and edit the form 1)are there others that have experience with this framework I wonder how much forms on the stack (the forms are not closed but hi ...Show All
Windows Forms How to set the setup info of SQL Server Express Prerequisite
In MSDE, I can edit the setup.ini to control the setup parameters like InstanceName, sa password..etc. How can I do this if I install SQL Server Express as a prerequisite in VS 2005 Thanks Hello, there is a way to control the parameters to SQL Server Express as deployed as a program prerequisite. When you run the Visual Studio 2005 Generic Bootstrapper (setup.exe) and have SSE installed as a prereq 'how' that package is ...Show All
Microsoft ISV Community Center Forums Access report using VBA
Hey All! I have a problem. I am creating a screen that includes persons first_name, last_name, phone_number (this is a fields in access) Now I have created a command button and I want that when user clicks on the command button the information in those fields would go to excel page. Sincerely, Boris There's a function in Access that lets you export information to Excel. It's called TransferSpreadsheet. DoCmd.TransferSpr ...Show All
Windows Forms Question about UserControl
If I have a usercontrol that inherit from TextBox (myControl). It's possible when myControl is drag into the form (from the toolbox), to add a label control too Thanks. Yes, you can do this with a custom ToolboxItem. Below is an example: /// <summary> /// This custom ToolboxItem displays a simple dialog asking whether to /// initialize a certain value. /// </summary> class MyToolboxItem : ToolboxItem { c ...Show All
