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

Software Development Network >> emz chisnky's Q&A profile

emz chisnky

Member List

CodyCooper
BlackCatBone
Graham Heslin
DOTNETFantasy
SherryZ.
siskhoalanka
Chuck Soha
Vishva
SteveL26070
johnweidauer
jbog91
Danko Jevtovic
jsndgrss
Sokon
Balthasar
velteyn
banchuan
Yuval124
Bob Kudulis
Bryan St. Amour
Only Title

emz chisnky's Q&A profile

  • SQL Server attaching SQL Server 2000 database to SQL Server 2005 Express

    If someone can help. I just installed SQL Server 2005 Express. I am trying to attach a SQL Server 2000 database so I can work on it. I am getting the following error. Msg 5118, Level 16, State 1, Line 1 The file "L:\SQL Data\Data\Dougins_Data.mdf" is compressed but does not reside in a read-only database or filegroup. The file must be decompressed. Msg 1813, Level 16, State 2, Line 1 Could not open new database 'Dougins'. C ...Show All

  • Visual Studio Tools for Office Integrate my aplication

    hi there. I’m a developer and i need to put my aplication within Microsoft office (Word and Excel). How can i do it I should to do a plug-in Then if i need to do a plug-in, how can i do it My aplication is not a VBA aplication, is possible integrate it to Microsoft office thanks VSTO allows you to create document level customizations only. If you want to create a managed solution at application l ...Show All

  • Visual Studio Express Editions Flash in C#

    Hi, I would like to know how can I put Flash Animations into a C# application , and the other problem is the I have to have the Flash Player for play the animation in the C# application Thanks http://www.csharphelp.com/archives/archive81.html Is an example, although it's short on detail as to where the controls came from. ...Show All

  • SQL Server Using SQL Profiler to trace sp_executesql statement

    I have a SQL Profiler question that I can't find answer anywhere: for the following SQL statement, is there anyway to find the actual SQL for @SQL , its CPU usage and Duration using SQL Profiler without changing the code EXEC sp_executesql @SQL, N'@EvalID int, @Return_Value bit OUTPUT', @EvalID=@EvalID, @Return_Value=@Return_Value OUTPUT Thanks in advance. Thank you very much, Simon. I believe that I did get the dynamic SQL when ...Show All

  • Visual Studio Team System Getting an Evaluation copy of Team Explorer for non Visual Studio Users.

    Hi, I have installed Team Foundation Server Beta 3 for evaluation. I have a number of Users who will need access to Work Items as well as the Source Code Management System on TFS but I do not want to pay $5,000/User. I beleive that there is a Team Explorer Client that goes for about $500/User and does not require Visual Studio to be installed. Does anybody know how I can get an evaluation copy Thanks in advance, Dave ...Show All

  • Visual C++ Help ID generation not available for ActiveX Control

    Hi there, Well we have been using an ActiveX control in VC6 for quiet a long time and generating help ID for them but , when We start using newer versions of VC Studio the Option for generating Help IDs for ActiveX control is not displayed and we have difficulty using Context Sensitive Help, If there is any work around Please help us out. Regards Usman Mahmood Yes this is still an issue can I have any work aroun ...Show All

  • Visual C# Get text from dialog box

    Hi all, I am trying to validate certain text appears in the top most dialog box (I'm validating a certain error message appears).  What is the best way to get a handle to the top most window and then validate that a specific string of text appears   I'm sure there are a million ways to do this; suggestions appreciated.   SeattleCard Hi, Do you own these top most windows I mean did you ...Show All

  • SQL Server Stored procedures with return values

    Hi, I'm trying to create a stored procedure for updating and inserting some rows in several tables. My Stored Procedure should be something like this CREATE PROCEDURE UpdateTables @Num as int Output, @Cod as int, @Des as nvarchar(30), @Prc as float, @Qty as smallint, @AutoIDTbl1 as uniqueidentifier Output @AutoIDTbl2 as uniqueidentifier Output UPDATE Number SET Num = Num + 1 INSERT INTO Totls (Num, Prc, AutoID) VALUES ( , @Prc * @Qty, NewI ...Show All

  • .NET Development System.Net.Sockets.Socket bad design?

    hey, why Socket Class, in System.Net.Sockets.Socket, does't support events like OnConnect, OnClose, OnReceive why do i need to send data to server to check connection state how about performance thanks. P.S. Who designed this text editor it's bad.        We do support that. If you call BeginCOnnect BeginReceive BeginSend a callback is called when the connect, receive o ...Show All

  • Visual C# Problem with event not firing...please help

    I have following code: namespace M2WDC_STARTUP { public delegate void CopyProgressChangedEventHandler ( CopyEventArgs e); public class CopyProcess { private string fromLocation; private string toLocation; public event CopyProgressChangedEventHandler CopyProgressChanged; private FileStream inStream = null ; private FileStream outStream = null ; public CopyProcess( string fromLocation, string t ...Show All

  • .NET Development Convert Byte array into bitmap

    I am making a Video file Player. In this player i am reading 1 block of bytes and convert that block in bitmap using, Dim bmp1 As Image = CType (Bitmap.FromStream( New MemoryStream(buffer_byte, start_position, stop_position)), Image) and then displaying that image in picturebox. I have to display 30 images in 1 second. but the Above method takes much CPU usage. so how can i reduce it One thing I came to know is that i have t ...Show All

  • Visual Basic how do i return myip addr with vb? urgent!!

    hi, this is a small probs i guess. but i am stuck here. i cannot detect my ip addr from vb. can someone pls. help regards hi srishu,                      winsock control is available in VB. using that we can able to find ip address. ...Show All

  • SQL Server 1 GB memory limitation for SQL 2005 Express edition

    Question: Can the SQL 2005 express edition can be installed on a machine that has more than 1 GB memory If so, is the SQL 2005 express edition will be using memory upto 1 GB     Yes, you can install SQL Express on a computer with as much memory as you want, but SQL Express will only use 1 GB of that memory. Mike ...Show All

  • Smart Device Development Net CF 2.0 , Is it Possible For me to Enable Voice Recording Feature From My Appliaction

    HI , Please help me to find a way to enable voice recording feature in my .NET CF 2.0 Pocket PC application. Thanks , JayaKumar.A yes, it is, take a look at this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/WaveInOut.asp it is about recording and playing sound in .net CF juraj ...Show All

  • SQL Server Copy Database with Microsoft.SqlServer.Management.Smo.Transfer breaks identity columns

    I have a task to copy at runtime "etalon" database inside one same SQL 2005 server. Everythings ok except identity fields: identity breaks in new database. I use such code: Transfer xfr = new Transfer(db); xfr.CopyAllObjects = true; xfr.Options.WithDependencies = true; xfr.Options.ContinueScriptingOnError = true; xfr.Options.NoIdentities = false; xfr.Options.NoCollation = true; xfr.DestinationDatabase = "Clarina_N"; xfr.DestinationServer = srv.N ...Show All

©2008 Software Development Network

powered by phorum