enric vives's Q&A profile
SQL Server Upgrate Sql Server 2000 Standard to sql server 2000 Enterprise
Hi, I need to know if somebody knows like making the update of Standard SQL 2000 to Enterprise. Greetings. Yes, this upgrade path is supported. Here are two great docs on upgrading from SQL 2000 to SQL 2005. http://www.microsoft.com/technet/prodtechnol/sql/2005/sqlupgrd.mspx#E5D http://www.microsoft.com/downloads/details.aspx FamilyID=3d5e96d9-0074-46c4-bd4f-c3eb2abf4b66&DisplayLang=en Thanks, Sam Lester (MSFT) ...Show All
Windows Forms DataGridView wont show new entry..until i run it again
Guys..i'm new here...and new with VB2005..im having this problem..that my datagridview wont show the new entry(i have a reg page) until i rerun the program...can anyone please look it up..tnx very much..could really use some help.. Form1.vb: Imports System.Data.OleDb Public Class Form1 Private AccountsDataSource As New BindingSource(My.Application.DAL.dbDataService, "Accounts") Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.dg.DataSource = Me.AccountsDataSource End Sub Private Sub dg_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dg.CellContentClick End Sub Private Sub Fill_Click(ByVal s ...Show All
Software Development for Windows Vista Multiple Updates of Rules with WorkflowChanges
Hello, I have a WebService and call that: public void Execute() { ... try { this .workflowInstance = this .workflowRuntime.CreateWorkflow( typeof (Workflows. wf_ReglesSite ), this .namedArgumentValues); UpdateRules( this .workflowInstance, this .RulesFile); } ... } The UpdateRules fonction is like that: private void UpdateRules( WorkflowInstance instance, string fileRules) { XmlTextReader reader = new XmlTextReader (fileRules); WorkflowMarkupSerializer serializer = new WorkflowMarkupSerializer (); RuleDefinitions rules = serializer.Deserialize(reader) as RuleDefinitions ; WorkflowChanges changes = new WorkflowChanges (instance.GetWorkflowDefiniti ...Show All
Visual Studio Visual Studio freezes
I have Visual Studio.NET 2003 Professional. It was working just fine a couple of days back and all of a sudden the IDE has become so slow to start up. The logo comes and freezes for a about 6-7 minutes before it allows me to chose the project to open. After that everything else works just fine. I did a repair and a reinstall but the problem still exists. Please help. Thanks. The article you wrote is for Visual Studio 2005 and I have problems with Visual Studio .NET 2003. devenv.exe doesn't have a log switch according to the help attached with devenv.exe in Visual Studio 2003. Thanks for looking. ...Show All
Visual Studio Express Editions Question on Form1.Load event
Hi, This has to be a simple problem; tonight I'm unusually dense. I have a simple application that has a Start button. The Start button calls a subroutine DoIt(). I'd also like the DoIt() subroutine to be called when Form1 loads. The Form1.Load eventhandler has a single statement; DoIt(). The Start button works fine; DoIt() is called, but the Load event handler does not DoIt()! I have tried to DoIt() from different Form1 eventhandlers i.e., Activated and Shown, but they don't DoIt() either. DoIt() reads default data from two Form1 textbox controls, does some calculations, and writes the answer to a textbox. How can I DoIt() when the Form1 loads Thanks. Ah, sorry for the noob tutorial. You're right, Load fires before the con ...Show All
SQL Server Delete Multiple IDs
Hi, I am getting doubles for all my IncidentIDs in IncidentID column. Ex: Incident ID 13734 Incident ID 13734 Is there a delete statement to get rid of more then one Replication of the same ID Thanks try like this select * into #temptable from yourtable Go Delete from yourtable Go Insert yourtable Select distinct * from #temptable Go Drop table #temptable ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Tutorial on Geometric Instancing in XNA
I've been so far unsuccessfully trying to learn how to do Hardware geometric instancing in XNA by using some old MDX code but haven't had much luck so far. I can't seem to find any information Instancing in XNA, where can i find such info I wonder if someone from the Microsoft XNA team could pop along and tell us how this works on the 360. It must be possible as games like dead rising seem to make extensive use of it. ...Show All
SQL Server sorting
I have a report with a table that lists employees. I want the manager to be the last employee in the list. I have a field in the table view_code that is used to designate between an employee and the manager. In Enterprise Manager when I sort by this view_code the manager is displayed last. In RS the manager is displayed alphabetically along with everyone else. Any help is appreciated. I think want you want can be accomplished using an expression for the sort. Try something like this for the expression: (I'm assuming that when view_code is true, the employee is a manager. Otherwise, just a normal employee) =Iif(Fields!view_code.value = TRUE, "zzz", "") + Fields!employee.value Then sort by "asce ...Show All
Visual Basic Question about Deleting Files
I have a VBScript file that I needed to code into VB I can understand some of how this is done but I'm unable to found any information on some of the problems I'm having. Here is the code for the VBScript file the main problems I'm having with some users for some reason there login name and the folder that windows uses isn't named the same so I needed to ask is there a way to delete files in VB basiced on there Extension and how can I point to a Directory using a variable Thank you for any help. 'This script will delete the CSV file in the users temp folder, this was created to fix a problem that we were 'having with windows displaying the wrong information once some many of these file were created. 'Version: 1.0 ...Show All
Visual Studio Team System Merge / commit not committing all pending changes
Has anybody seen this happen. You merge a branch (forward integrate in this case), you fix all the conflicts and you check in *everything* from the VS PendingChanges tool window. The operation completes and you do a refresh in the PendingChanges tool window and there's another item that needs to be checked in. WTF In this particular case it was a directory that was renamed that also had files in it with edits. The file edits were successfully committed but apparently not the directory rename. Are there any known cases where a merge can't be completed in a single commit I'll keep an eye on this since this has happened about 3 times now. After the last merge where this happened the TF server crashed (the m ...Show All
Visual Studio Express Editions Loop through system colors?
How can I loop through all the system colors I want to draw a filled rectangle with each of the colors that are available & print them to a laser printer so I can see & compare the various shades of gray that each color prints out as. Thanks... Instead of enumerating through the colors and creating all those brushes which you are not disposing, you can just enumerate through all the brushes in the Brush class and not have to create brushes of your own. ...Show All
.NET Development I have a error 2908 wat is the solution
By installing of . net framework1.1 i see error 2908 I just got this error while loading "BounceBack Express" for a Seagate ext drv. This pgm will not work w/o a Microsoft.net Framework 1.1 setup run. Hoping your solution is my solution. I'm new to this forum stuff...which removal tool in Announcments and FAQs Which page is that & how do I get there Rich P.S. I'm so new, I'm not sure how to get back here. ...Show All
Visual Studio Team System TreeDiff (IDE) bug/feature request
In the IDE, when a file exists in both locations, you can double-click to compare. When the file only exists in one location, double-click does nothing. Double-click should default to "View" if "Compare" isn't available. TreeDiff and Annotate are really nice features, btw. ...Show All
Visual Studio Express Editions Easy Question
In the following code lblApplicationStatus and pbStatus are controls on a status strip container. There is a button on the form with the following click event. The pbStatus bar increments and displays as one would expect. The lblApplicationStatus.Text does not display "Running Simulation..." until after this event is complate. How can I get around this so it displays immediatly on Click Just to clarify I have a frmMain that contains sscMain (status strip) where the two controls reside. Also on the frmMain is a panel with a binding navigator on it. This binding navigator wired to the following click event. Private Sub BindingNavigatorRunSimulation_lick( ByVal sender As System.Object, ByVal e As System.Even ...Show All
Smart Device Development Beta of Microsoft Certification Exam 70-540
Microsoft Certification Exam 70-540 is available in Beta form right now! This is a Technology Specialist exam for application developers in the mobility space. The Preparation Guide is available for the Exam at: http://www.microsoft.com/learning/exams/70-540.mspx . To register visit one of our independent testing providers: * Thomson Prometric: http://www.prometric.com/ContactUs/T...rs/default.htm * Pearson VUE: http://www.vue.com/ms/ Please use the following promotional codes when registering: Exam 71-540: BTA540 Best of luck! Howard Dierking Product Planner Developer and Database Certifications Microsoft Corporation Hi Alex, thanks for your interest in my feed back.. i noticed a ...Show All
