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

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

Kardi

Member List

cindyluke
StephK
Jonas Samuelsson
vijil
MessiahAndrw
WN3335
Saad Ahmed
Tom De Cort
SneakerXZ
HY
becklighter
Leo Liu
Gordon999
erikkl2000
TonyWissler
Sean Chambers
David Sutherland
yeos_lee
Ayman_Hdaib
DRoden
Only Title

Kardi's Q&A profile

  • SQL Server Please post setup and installation questions in the Setup forum

    This forum is intended for users who are new to SQL Server, and have basic usage questions. If you have setup or installation issues or questions, you should check out the Setup forum. Thanks Hi All I am upgrading my DBMS from SQl 2000 to SQL 2005 and gettting some problem.When I run the SQl server 2005 upgrade Analyzer, I am getting some warning as well as in the report. I am ok with the warning message but not with the error. The error is - "SQL Server 2000 Data Transformation Services","PreUpgrade","SQL Server 2000 Meta Data Services packages are not supported ","Existing Meta Data Services packages should be moved to SQL Server storage (in the msdb database) or to structured storage ...Show All

  • Windows Forms Dropdown List

    Is there a way to make a Dropdown List typing enabled in a web application. Thank you in advance I have one more doubt too....can u please kindly tell me why do u need this intellisense too :)..as far as i have understood ,do you need to display the data from a database on the page, when u type something in a textbox ,which gets the intellisense as you are typing...where the items in the intellisense are the items from the database..is it this ...Show All

  • SQL Server Huge amount of memory (SQL25K.MS)

    I’m seeing that Management Studio is cosuming a huge amount of memory either development server or mine’s workstation. I mean, even when it’s on inactivity way. Wonder I, this behaviour is assumed as normal or not Thanks for that or provide me any link or information related. Also, clearly separate memory usage by SQL Server Engine (which is the subject of this forum) and Management Studio (which is a tool). There is also a dedicated forum for tools where questions like this may be answered faster: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=84&SiteID=1 Also note that SQL Server memory usage is not necessarily correctly displayed by Task Manager when AWE or locked pages on 64-bit are u ...Show All

  • Visual C# MEthods and functions.....

    what is the diff. between methods in C# and funtions in C........ need good insight.... plz help Hi, As far as I understand, the function in C is called "function" because C is procedual language, it use function just as a function (like function in mathematics), so it called "function". While C# is object-oriented , every method is in class, so the name "function" not longer used, instead we use "method". (Class may has many methods)   ...Show All

  • Visual Studio Express Editions C# Book

    Can anyone recommend a good C# book for a beginner I don't know any C or C++ but want to learn C# and eventually XNA :) Thanks I just bought "Sam's Teach Yourself Microsoft Visual C# 2005 in 24 Hours, Complete Starter Kit", and I think it's really good. Comes with the original Microsoft CD with Visual C# 2005 btw. And the first book on programming for beginners I've seen that doesn't start with the worn-out "Hello World" program. Instead you jump right into designing a real application (a picture viewer), in the first chapter. Cool! I was a bit annoyed though that there wasn't any electronic version included, I think it's much easier to work with an ebook. However, I discovered that they have electronic cop ...Show All

  • Visual C++ Problem with intellience

       Hi All,     I am doing coding in vc++ 2005 ...whenever i am adding any variable to any class the intellience doesn't take effect as it may seem . its giving info as could not understang information to the left of . or -> (see troublshouting intellience in c++ projects).    Eg. i am adding one variable to my dialog class ..i am not getting the list of that dialog class as quickly .     I bulid and then rebulid in order to resolve that issue ..sometimes it works .    Sometimes i have to delete .pnb file manually then after reopening that application may gives better intellience.     So what can i do summerize about this issue    ...Show All

  • Visual Studio Team System Schema Compa Using a project as Target Schema

    Hello, I noticed that a project can be used as the Target Schema in a schema compare. Is there anyway to update the project with what is currently in the source database The script that is generated is SQL meant to be run on a database and the 'Write Updates' button is greyed out. Are there any plans to implement the ability to directly update the code of the project via the Schema Compare It could also be useful to be able to compare project to project and then update accordingly. I was just curious if anyone else had similar thoughts or answers. Thanks, - Grant Thank you for the feedback:-) and I do hear you. We have heard this alot from customer with the recent CTP and at Tech Ed. We trying ...Show All

  • .NET Development Very long signing a message

    Hi all. I have a method which sign a message with a certificate registered on my computer: public static byte [] SignMessage( byte [] m_message, X509Certificate2 m_cert) { DateTime dt = DateTime .Now; ContentInfo m_contentinfo = new ContentInfo (m_message); SignedCms m_signedcms = new SignedCms (m_contentinfo); CmsSigner m_cmssigner = new CmsSigner ( SubjectIdentifierType .IssuerAndSerialNumber,m_cert); m_signedcms.ComputeSignature(m_cmssigner); global ::System.Windows.Forms. MessageBox .Show( DateTime .Now.Subtract(dt).ToString()); return m_signedcms.Encode(); } m_message array lenght is not more than 150 bytes (!!!). mbox shows me at least 6-7 seconds for only one ...Show All

  • Visual Studio Express Editions Extract Audio Features of videos

    Dear everyone, First, thank you for your attention. I would like to extract audio features of videos by C#. The features may be volume, tone, something like that. In fact, my knowledge in audio features is limited, but I do think that there are many features of audio could be extracted from the video. Could you help by showing me how to extract different audio features by C# Any tool or any library Thank you for your detailed answers. Best Regards, David So you want to do waveform analysis Thats the only way I can think of how you can extract features of audio. I'm not aware of the audio/waveform analysis libraries for C# (or any other language ;) ), but the tone of the audio is determi ...Show All

  • Visual Studio EnsureConnectionPoints on PortShape doesn't work

    How can i force the connection points of a portshape (in the middle of its sides) The classic way with EnsureConnectionPoints and HasConnectionPoints doesn't work. Thanks for your answers, My problem was on the port not on its parent's nodeshape. You can reproduce this whith the 'example.Components' sample by changing the AssociationLink's routing style value from Rectilinear to Straight. (I saw this later) Now i change my model and i use another graphic representation without port. Thanks again. ...Show All

  • Visual C++ I want to sort a array of a structure, is there any other function doing the job except qsort?

    I want to sort a array of a structure, is there any other function doing the job except qsort Can I USE STD function Can you show me one example I appreciate your help. You can use the qsort function for the same. it's accepting void* pointers as input. so that you can give the array structures as input You need to give a comparison function for your custom comparison. the array will sort depends on the result from this function. You can type cast the void* pointers to your structure type and can implment the required comparison as per your sorting criteria. please see MSDN for more information ...Show All

  • Visual Studio Looking for laptop, should be fine with .Net Framework.

    Hi, I'm planning to purchase a laptop but don't know exactly what minimum config is required to run it, specially in case of laptops. I have gone through lenovo C100, i think the processor is Pentium M. Does it support .Net without any problem " Can anybody help in this regard. if you think to use asp.net in winx pro, be careful that you can install IIS in the laptop, try to buy one that IIS is running, this problem could happen in some laptops with wx pro: http://support.microsoft.com/ kbid=894351 Efrain Munoz ...Show All

  • Visual Basic How to Copy Controls in Code???

    Visual Studio 2005... Casual Programmer... My apologies for this simple question but I continue to be stumped with this issue... 1. Create a Windows Application; add a GroupBox control named GroupBoxTemplate to the Form. 2. Add some graphics to this control. 3. How do I create copies of this GroupBoxTemplate including the graphics in code 4. The following code does not produce separate copies since the three controls all point to the same object on the heap. How do I modify the code to generate independent copies of the GroupBoxTemplate Dim GroupBoxCopy1 As System.Windows.Forms.GroupBox Dim GroupBoxCopy2 As System.Windows.Forms.GroupBox GroupBoxCopy1 = New System.Windows.Forms.GroupBox GroupBoxCopy2 = New ...Show All

  • Visual Studio Team System TeamLook installation problem

    Hello, I try to install trail of Team Look, but I only get a message about Team Look requirements of Team Explorer and Microsoft Outlook 2003 with SP2, the problem is that I've got both of them,but I still get this message. What can be a problem here Thank you very much. Katy, TeamLook had a problem with checking for Office when the user had an internationalized version of Office. The new available build (v 1.0.1.24) which can be downloaded at http://www.personifydesign.com/products/teamlook/teamlook.aspx has the fix to this problem. Thanks for your interest in TeamLook! Thanks, Juan J. Perez, Personify Design ...Show All

  • SQL Server Microsoft SQL Server 2005 RTM merge replication issues

    We are trying to implement merge replication between 2 servers. Database size is around 11GB. When I tried to create publication, snaphot agent is failing with following errror. Error: 14151, Severity: 18, State: 1. Replication-Replication Snapshot Subsystem: agent NBTENTSQL1X-PayDirectWeb-PayDirectPub-2 failed. The replication agent had encountered an exception. Source: Replication Exception Type: Microsoft.SqlServer.Replication.ReplicationAgentSqlException Exception Message: String or binary data would be truncated. Cannot find the object 'MSmerge_sel_4D388 The table where the snapshot is breaking contains around 169 columns. Can someone please help me get through this error Are you using vertical partitioning ...Show All

©2008 Software Development Network