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

Software Development Network >> racerx's Q&A profile

racerx

Member List

Jay T
Brian Kinder
Mr B
hTp
Heem
dipitiduda2
pranavkukreja
chuchi
kaja
zut
Dean Perry
pgiuseppe
Knubbi
Guy Smith-Ferrier
Eric J. Smith
Natalie F.
OpticTygre
Lourdes
jocamill
Ashish Adkine
Only Title

racerx's Q&A profile

  • SQL Server Locks - Isolation Levels

    Good morning, I am trying to get my head around locking (row, table) and Isolation Levels. We have written a large .NET/SQL application and one day last week we had about two dozen people in our company do some semi "stress/load" testing of the app. On quite a few occassions, a few of the users would receive the following error: "Transaction (Process ID xx) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction." We are handling this on two fronts, the app and the database. The error handling in the app is being modified to capture this specific ...Show All

  • Visual Basic Need Help: Specifying toolbox icon for a web custom control?

    In VB.NET 2005, how can you specify which icon to display in the toolbox for a Web Custom Control I'm not looking for the project icon. I'm building a web custom control library (DLL). This library contains components that are added to the VS toolbox for ASP.NET projects. By default, the icon that shows in the tool box is a gear. I'm looking for a way to change that default icon to display something more meaningfull. In the 1.x framework, all you had to do was to include a bitmap file that had the same name as your class and set its Build Action to Embed Resource. ...Show All

  • Windows Forms Databind to collection object

    I've created a customized collection and want to databind it to a DataGridView. After some research, I found that I need to create a bindingsource control and then bind to the specific collection object. The first problem is that I need to retrieve the collection instance for some additional method calls. How can I get the underlying collection instance back I found that the databingsource will use BindingList<T> as its internal store. How can I convert it back to my specific collection so that I can make additional method call Belair, thanks for your help first. Actually, I've just made the same thing worked. (Certainly with ...Show All

  • SQL Server replmerg.exe

    Hello All, I am having problems with my merge replication job. I have recently upgraded sql server on of my test server from 2000 to 2005. Ever since I couldn't get this job to run. I keep getting the following error. ------------------------------------------------------------------------------------------- Date        11/30/2005 2:57:00 PM Log        Job History (TEST_Merge_Sync) Step ID        6 Server        TEST Job Name        TEST_Merge_Sync Step Name      &n ...Show All

  • Visual C++ loading the classes in a native dll

    hey guys, i have a static linked native c++ dll i built. i want to try and load the c++ classes in it, from an exe (for example). i want to be able to load these classes, and make objects and start using them. im trying to implement a plugin system of some sort. is that feasible i have done it using C# and the System.Reflection, but what about native C++ Since its done in the .NET framework, then its done C++, cause what im imagining the .NET was built on C++, so its there somewhere, maybe somebody could help me out please. how r plugin systems implemented then note: i know the idea of making interfaces, and the classes in the dll have to i ...Show All

  • Windows Forms Link forms

    What im trying to do is have my main form which has a checked list box...based on what is checked...go to a form that will run whatever was checked. Example: Program to install: (checked list box) Program A Program B Program C Program D So when a person checks to install Program A and Program C...go to another form that will process this. Hope I explaned myself enough.. Thanks in advance. Did you have any luck with solving this So a wizard type interface You can pick them up from third parties like Infragistics, DevComponents.com might actually you some pain. James ...Show All

  • Visual C# List<T>.Insert is very slow?

    I have been writing a class that uses the List<T> class and noticed a huge performance decrease when using the List<T>.Insert method to insert my elements in the correct position as opposed to just adding them to the end of the list. The collection is about 200000 elements big. I tested this by creating a new project that creates a new List<int> and adds 200000. After that I add another 100000 by using the List<T>.Add method. This process takes a few milliseconds on my system. If I add the 100000 elements by using the List<T>.Insert method the process takes 20 seconds +. Sorting the list after adding ...Show All

  • Visual C++ Confusion with watch values during debugging

    The debuggee is a mixed (MFC + /clr:OldSyntax) exe. The application is linked with some assemblies (MFC extension DLL's, /clr:OldSyntax enabled) Compiler settings: Release build, Unicode, Disable optimzation After a breakpoint is reached, I will watch some values. Here is a look at my watch window: + this                      0x01010a8c + this->Node                0x00d81718   this->Node->Name         ...Show All

  • Visual C++ Help with compiler and linker options...

    Hi, i am relatively new to C++ programming,and as i am currently using Visual C++ verion 6 at TAFE, would like to use a similar program at home. As such,i have downloaded the new Beta Express pack,and installed it,but am having trouble using the Compiler and Link functions as i am not used to using a command line compiler. I find them too confusing for a beginner,and find using a GUI based one that is similar to the visual studio one much easier to learn. My question is, how can i configure the beta express pack to compile in the IDE rather than the command line,as both the compile and link options are faded out and i cannot use them ...Show All

  • Visual C# hashMd5 .ToString() arguments

    Im working on converting some code thats part of a login and I dont know how to go about converting this line that is in my hashMd5 function  s += z.ToString("x2 ") to C# and get the same effect     private string hashMd5( string text) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider (); byte [] b = Encoding .UTF8.GetBytes(text); byte [] c = md5.ComputeHash(b); string s = "" ; foreach ( byte z in c) { s += z.ToString(); //  s += z.ToString("x2") - agruments dont work in C# } MessageBox .Show(s); return s; } ...Show All

  • Microsoft ISV Community Center Forums Business Scorecard Manager 2005 Beta 2 Setup

    Hello All, While running setup for the Business Scorecard Manager 2005 Beta 2, when I get to the feature requirements analysis under web parts, I get the message "Failed Microsoft SharePoint Extended Site" and I can't continue with the setup. How do I go about this in order to continue Regards, Sam. Vea esto: http://technet2.microsoft.com/Office/f/ en-us/library/5ed10d1c-ffdf-4651-b7b6-cac1de6f9ee11033.mspx si no le sirve, es por el SP... actualice a BSM con SP1 ...Show All

  • Windows Forms Help! Bug in DataGridView!

    HELP! I have a bound grid with DataTable as DataSource. After performing a .Merge on the DataTable I get: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index at System.Collections.ArrayList.get_Item(Int32 index) at System.Windows.Forms.DataGridViewRowCollection.SharedRow(Int32 rowIndex) at System.Windows.Forms.DataGridView.OnRowValidating(DataGridViewCell& We took some last minute fixes in this area -- doing things on the datasource which changes the row count like this. When the released bits come out give this a shot. -mark Dat ...Show All

  • Windows Forms null value member in a combobox

    hello, I have a combobox bound to a parent table. By default, my combobox shows all parent rows but i would like to be able to choose null parent id. For example, my form is modifying an order. In that form i have a combobox in wich i can choose the customer who ordered it. If i bind my combobox to the customers table i have all&nbs ...Show All

  • Windows Forms Can c# perform a CTRL+V

    Hi all How can i get my program to perform a CTRL+V. (paste from clipboard) Thanks. Lars Do you want to get what is in the clipboard , if yes, use Clipboard class . ...Show All

  • Visual Studio VB.Net 2005 Add-ins

    Hi, Can somebody point me to a simple article with sample code that explains how to get started with VB add-ins thanks in advance Nigel Hi Nigel, You have lots of resources at my web site: http://www.mztools.com/resources_addin_developers.htm -- Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio You can code, design and document much faster: http://www.mztools.com ...Show All

©2008 Software Development Network