Software Development Network Logo
  • .NET Development
  • Game Technologies
  • IE Development
  • Visual C#
  • VS Team System
  • Audio and Video
  • Windows Forms
  • Smart Devicet
  • SharePoint Products
  • Visual FoxPro
  • Microsoft ISV
  • Visual C++
  • Windows Vista
  • Visual Basic
  • Visual Studio

Software Development Network >> Dark Dominion's Q&A profile

Dark Dominion

Member List

siulm
kenny08
KitGreen
xRuntime
Nikolay Georgiev
RemcoJVG
Kamii47
Wicket
C#Student
Darrell Norton
nature0276
Angry Coder
Di Wu
Woyler
Narayan19
Jonathan Gauthier
aclysma
Predator14567
hackbabu
Usha Iyer
Only Title

Dark Dominion's Q&A profile

  • SQL Server Cannot run the script of SQL Server 2005 t0 SQL Server 2000

    Hi all, i have a database in SQL Server Express Edition. i generate the database script from the database>All Tasks>Generate script Option. That script is not running in SQL Server 2000. I set the property of the database to compitible with SQL Server 2000 and i also set the property when generating script for 2000 version. still i get the same error. Am i missing something. Please tell me how to do this Even with compatability level set down, you can't expect a script to be compatible if you used any SQL Server 2005-specific features.  You're going to have to do a find/replace and fix it up to get it working.  What errors are you getting   Remember: No ...Show All

  • Windows Forms Duplicate component name 'iDKontaDataGridViewTextBoxColumn'. Component names must be unique and case-insensitive.

    This is the error, which makes me cry. Everytime i work with datagridview, it makes this error in time. I remove every problematic Columns, but it doesnt work. It seems that designer sees something that no longer exists . For instance iDKontaDataGridViewTextBoxColumn was removed from the designer part of the class. ANd designer still says, that it is there. What may be the sollution of this I would like to continue my work without removing whole tab pages of my forms. Please help. Tnanx for every help. on that page is not possible to download the hot fix. Wow, wonderfull Miscrosoft. ...Show All

  • SQL Server How to merge data from two different rows

    Hi Guys, Can anyone please explain and show an example of how to merge data from one row to another using in SQL 2000 thanks in advance Raijan, If this doesn't fit your case, please be more specific about what you are trying to accomplish. The first thing I would look to do is pass outbound parameters rather than datarows, that is assuming that the two rows are from different tables as: CREATE PROCEDURE DemoProcedure @UserName nvarchar(15), @Password nvarchar(15), @FName nvarchar(25) out, @LName nvarchar(25) out, @Role nvarchar(25) out, AS BEGIN Declare @UID int SELECT @UID=UserID @FName=FName, @LName=LName From USERS Where UserName=@UserName and @Password=Pass END BEGIN SELEC ...Show All

  • SQL Server Performance

    I am developing an application which uses SQL Server 2000 as database engine, all connections are made using "sa", and my sa password. My question is: I might have implementation for over 350 concurrent users, using the application at the same time. How can I verify that SQL Server will not face any performance issues Any particular specifications for the Server that SQL server will be installed upon should I use multiple File Groups, or seperate Log File on a Hard disk and Data file on another Hard disk Please if you have any documentation that provide real time performance testing of SQL Server with more that 350 users, it would be a great help. P.S: My database is small (about 130 tables), most of them are only listings (user ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Plain ContentTypeReader

    Hi I have been reading through the forum for hours now and there is something I do not quite understand: Any class that is required for readers comes from Microsoft.Xna.Framework.Content.Pipeline. This library is not available for the Xbox 360, thus leading me to the conclusion that it is currently not possible to write a custom ContentTypeReader for the Xbox 360. Is that correct My other problem is that I do not want to write an importer as I use an application to compile my models. I only want to write a ContentTypeReader to load it into XNA at runtime. Is that possible without utilising the ContentTypeWriter.GetRuntimeReader function cheers Daniel I export an OBJ file from a 3d software. Then I use my ...Show All

  • Visual Studio Express Editions syntax error

    Hi Can anybody help with this syntax error i'm getting I really don't know what wrong. my code: this ->myImage = System::Drawing::Image::FromFile( "MyImage.jpg" ); this ->myGraphicObject = ( gcnew System::Drawing::Graphics::FromImage(myImage)); error: error C2061: syntax error : identifier 'FromImage' Cheers well what i want to do is just change the colours of some of the pixels. I've been looking at the graphics components and think i'll be able to draw on the image. But thats not really what i want, i want to be able to actually change the image itself. if you know what i mean like to click on a button and the top corner of the image to have chang ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Xbox 360 Guides in XNA

    Hi there, I've been playing around with the framework and I have a little question for any MSFTies who can answer. On the Windows side of things, if we want to call up any useful built in functions of Windows like say the common dialog box colour picker (for say, a player's car paint job) or a MessageBox (you've reached the end of the demo!), we can still do so by calling in to the Windows.Forms namespace. On the Xbox 360 side though, any such UI we would have to recoded manually. However, as we all know, there are certain built in elements of UI on the 360 too in the form of the various Xbox Guide slide out panels. Currently, access to one of these does exist in XNA (The save Location guide for letting the user choose a Memor ...Show All

  • Visual C++ Opening multiple files in a single program instance

    This is something that is done millions of times every day... Using Windows Explorer you double click a file to open it, the associated program starts up and the file is opened, if the associated program is already running, then the file is opened in that (already running) instance of the program. Simple... However, I'm having trouble finding how to do this simple feat with VC++ 2005, CLR, CLI, .NET. What is the simplest "supported" way to do this Seems you are looking for solution for making your program a single instance one. Please go through this article Run a Single Instance of a .NET Application ...Show All

  • Visual C++ "%" is managed version of "&" in C++.

    What does the ^ refer to in String^, Image^, etc. Is it a pointer operator Please don't say XOR, unless if it is XOR, in which case please explain it's operation in the above contexts. Thanks. I _cannot_ tell you how frustrating it's been trying to find that information in MSDN or Google. In fact, I can't!!! Thanks. ...Show All

  • SQL Server Sql Management Studio Express

    I recently installed Sql Server Management Studio Express on my computer. I am unable to connect to a remote instance of Sql 2005 using this program on my computer. I have shut off windows firewall as well as my third-party firewall but have come up with the same error message. TITLE: Connect to Server ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53) I installed Management Studio on another computer and was able to ...Show All

  • Visual Studio Express Editions How do you change form's focus to the internet?

    Basically that's my question: how do you hcange the form's focus to the internet I'm trying to make my form detect stuff from the internet when I open it up. ahmedilyas wrote: if you mean you open up an instance of IE and the application "sniffs" items from packets...that kinda would be illegal in a sense (packet sniffer) Illegal Eh What (in any sense) is illegal about that Packet sniffers are not illegal at all. ...Show All

  • Visual Basic code snippet editor

    I get an unhandled exception error the minute I fire up the code snippet editor and cannot continue from that point on.  Is this a reported problem   I'm running on XP Professional with service pack 2 and using Visual Studio 2005 Professional. Sounds strange. On my dektop there are menus within the toolbar at the top. Save, Export, Synch Options,Help in the Treview pane at the left you can click the right mouse button and select add path. After browsing for an existing snippet path you can open the snippets and you will see a lot of possibilities to edit those. If you like to add a new snippet you have to click the right mouse button over an existing node (not the top one) and you will get a p ...Show All

  • SQL Server Tape not available as Backup Device

    I've got a new HP ML370 G4 Server 2003 SP1 with a fresh install of SQL 2005 SP1. I'm trying to create a backup device for the internal HP DAT 40 and tape is greyed out as an option. I have the newest HP software drivers and firmware. The tape drive is seen by Server 2003 device manager and by NTBACKUP. I can backup using that program. Why doesn't SQL 2005 see it I tried a new HP Ultrium tape drive with the same results. Anyone else see this and can recommend a fix TIA I am having the same problem. I tried your TSQL command and get the following error: Write on \\.\tape0 failed: 1117 (The request could not be performed because of an I\O device error) But NTBACKUP is working fine so I don't think it ...Show All

  • Visual Studio Express Editions Connect to Lotus

    Hello On our server we have a lot of Lotus databases that we get information from. Now we want to make a small easy program to collect information like product and quantity on stock so our resellers can get the information as well but still not get all the information in that database. Is this possible How do i connect to lotus database I would really appreciate all help I can get. Thanks Rikard aka Biocide I suspect you won't be able to connect to it as a 'database' - it may well be a repository for data, but probably isn't considered a database as we know it: or the format is not well known. You will need to use the Lotus notes objects, I believe. You will have to investig ...Show All

  • SQL Server Update table with result from Data Mining Query

    I apply data mining query transformation to data i got from conditional split (Table Employees where salary=null). I predicted the value of column(Salary) and i want to update column Salary(table Employees) with the predicted value, only for the rows that there is a prediction. Any suggestions how can i update the table with the result of Data Mining Query Transformation Thank you. ...Show All

©2008 Software Development Network