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

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

Seiggy

Member List

RayClark096
C McQuade
olap_user
JDev
sydes141
beermix
jgiacobbe
ManuFern
r0d
blanc
devinr
Attila Fogel
wolf777
Samoyed
Kartit
Garry W
LTD
WV John
Wilk06
Al6200
Only Title

Seiggy's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Compiling from command line.

    Is there a way to automatically add the Xna assemblies when compiling from the cmd line Like when you use simple assemblies like System.Drawing.....Windows.Forms, all you do is csc *.cs and it compiles I don't know but I hate using VC Express. I hate all the added code, so I prefer to use SharpDevelop and compile from the cmd line. Thanks. ...Show All

  • SharePoint Products and Technologies SharePoint Webcasts for March

    TechNet Webcast: Planning for and Deploying SharePoint Server 2007 (Part 2 of 2) (Level 200) Friday, March 16, 2007 - 9:30 AM - 10:30 AM Pacific Time Blain Barton, TechNet Presenter, Microsoft Corporation http://msevents.microsoft.com/CUI/EventDetail.aspx EventID=1032330088&Culture=en-US TechNet Webcast: Security for SharePoint Products and Technologies (Level 200) Monday, March 19, 2007 - 9:00 AM - 10:30 AM Pacific Time Michael Murphy, TechNet Presenter, Microsoft Corporation http://msevents.microsoft.com/CUI/EventDetail.aspx EventID=1032330328&Culture=en-US TechNet Webcast: Installing and Configuring Search in SharePoint Server 2007 (Level 300) Wednesday, March 21, 2007 - 9:30 AM - 10:30 AM Pacific Time Karl Kuhnhausen ...Show All

  • .NET Development merging contextmenu strips

    Hi, I have a list of context menu strips which I need to merge as one, but the individual menus must remain unch ange d. I try to do that as follows: ContextMenuStrip contextMenuMerged = new ContextMenuStrip (); foreach ( ContextMenuStrip menu in m_contextMenuList) { for ( int i = menu.Items.Count - 1; i >= 0; --i) { contextMenuMerged.Items.Insert(0, menu.Items ); } } But once the item is inserted in the contextMenuMerged menu, that item is removed from the original menu. Is there any way to merge the context menus without modifying the original menus Thanks, Manju I tried to implement the cloning like this: private ToolStripMenuItem Clone ...Show All

  • Visual C++ Hotfix # 919280

    Hi, Where can I find information regarding the bug fixes that are included in hotfix # 919280. I need this information because we need to log all the changes to the development environment. Thanks in advance, Saiyam Kohli Check out http://www.kbalertz.com/kb_919280.aspx  & http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=149470&SiteID=1&PageID=2 Hope this is what you are looking for! Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server parameters in sql task sub query

    DELETE T1 WHERE EXISTS (SELECT * FROM T2 A WHERE A.C1= T1.C1 AND A.C3 >= ) Results in below error (OLEDB SQL TASK): " failed with the following error: "Parameter Information cannot be derived from SQL statements with sub-select queries. Set parameter information before preparing command.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. Any resolution hi, It works for a SQL Task but how can I set up a OLE DB Command in a data flow task I'm having the same error. thanks ...Show All

  • Visual Studio Team System Error when trying to create a new database project

    I've installed VSTS 2005 Trial System, SQL Server 2005 Enterprise Evaluation System and Team Edition for Database Professionals CTP7. They are running on a fully patched virtual machine with 2000 Pro OS. I'm running as an Administrator and can create databases from both SQL Management Studio and from within Visual Studio. When I try to create a new database project I get the error: "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: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)" Remote connections are allowe ...Show All

  • Software Development for Windows Vista Building XPS printer driver on windows XP

    Hi      I want to use XPS printer driver on Windows XP.  while installing this XPS printer driver on windows XP it's asking for some DLL files (ex. xdwmark.dll, xdcolman.dll). in WDk folder there is no such DLL that means i have to build this DLL from WDK building environment.   when i am trying to build these dll from WDK's Windows XP build environment i am gettting following warning :   [source path ] is not valid for the current  OS target . can you help me how can i build these DLL for XP   I am able to build these DLL from Windows Vista environment. but while printing from this d ...Show All

  • Smart Device Development Can’t find “sms.dll” file

    Hi, I read in this link “http://support.microsoft.com/kb/555578/en-us” that the .NET Compact Framework brings the followings dll. COREDLL.DLL AYGShell.dll – Pocket PC shell functions CommCtrl.dll – Common control lib WinSock.dll – Windows Sockets Phone.dll – High level phone control SMS.dll – SMS messaging API I’m working on VB 2005 whit .NET Compact Framework v2 trying to develop an application that sends SMS but in all the code examples that I could find they call an dll file named ”sms.dll”: <System.Runtime.InteropServices.DllImport( "sms.dll" )> I been searching in the internet, in all the directories of my computer looking for that file. If some body knows were I can find it please le ...Show All

  • Smart Device Development How to use sockets to connect to http server??

    Hello everybody, I am developing a win32 application for smart devices.I am new to windows programming.I have to connect to a httpserver and download some files.I would like to know how to connect to this httpserver using sockets at client side.I am using Visual C++(under Visual Studio 2005) and Windows CE platform. Any help in this direction would be appreciated.Thank you. Windows internet services (WinInet) can be used for the purpose. Please see the link for further information http://msdn.microsoft.com/library/default.asp url=/library/en-us/wceinternet5/html/wce50oriwindowsinternetserviceswininet.asp I hope it helps ...Show All

  • Windows Forms How do I incorporate the Auto-indent feature in TextBox?

    Okay, I want to make a very simple code editor without having to do much work. The TextBox was doing fine, until I realized I just couldn't do without the Auto-indent feature. Maybe not as advanced as our VC# editor, but atleast that which automatically inserts the indentation of the current line into the next line when I press Enter. Does anybody know if there is some kinda enable feature in the TextBox class Can anybody tell me a fastest way of doing this Hi, Furqan By default, the collection of lines is a read-only copy of the lines in the TextBox. To get a writable collection of lines, use code similar to the following: textBox1.Lines = new string[] { "abcd" }; Pls reference to: http://msdn2.microsoft.com/en-us/library ...Show All

  • SQL Server Convert varchar to date on a column

    I have a table with a column defined as a nvarchar.  The strings contained in the columns are in the form of YYYYMMDD.  I searched the forums here and believe that if I have a date as a string then YYYYMMDD is the correct format for a date stored as string.  However, I think I need to store the date as a Date type for selecting, sorting, searching, and indexing.  What is the best method of converting the entire column to a Date type from a nvarchar type with the assumption that all the string dates are in the same YYYYMMDD format   When I tried to modify the table using the Managment Studio Express, I get a warning: "Data might be lost converting column 'Date' from ...Show All

  • SQL Server Unable to set Default Schema for a group

    We're using Windows Authentication with our SQL Server.  We've added a domain group to the SQL Server groups and would like to give it a default schema.  The properties window is the same for users and groups but the default schema field is enable only for user entities.  We cannot add a default schema to a group.   Is this by design,  a bug or a problem with our SQL Server installation Updated on 2005/08/29 My first try was done at through Database\Security\Users.  I tried going through Server\Security\Logins and I got this error message    Alter failed for User 'Domain\Group'. (Microsoft.SqlServer.SMO)   Additional Information:   --> An exception occured while ...Show All

  • Visual Studio Express Editions How can I get the current Browser URL?

    I have the need to automatically get the current page's URL for the user, how can I do that in VC++ 2005 express please DOSrelic wrote: I have the need to automatically get the current page's URL for the user, how can I do that in VC++ 2005 express please I don't understand the use case here. 1. Describe where there is a "current page." The user is at the PC and has attention on a current web page somehow. What is the user operating and what is the "current page " 2. Now, you have a program that you want to build in VC++ 2005 Express Edition. What is the user doing with this program and what do you have in mind for the program knowing the URL of the current page the user is viewing. What act ...Show All

  • Software Development for Windows Vista Localizing Common dialogs in VC.NET

    Hi, I am currently localizing an appication into japanese in Windows 2000. I use the OpenFileDialog to open files. When I run the application on Japanese windows 2000, I can see that all the labels of OpenFileDialog come in japanese as expected. But the error message for invalid file ie "... . Please verify the file existts " comes in english. I want to know whether this is really the feature of OpenFileDialog or I need to set any other paramter. Please help Thanks everybody for not replying But I eventually found the solution on a different forum. We need to install the .NET laguage pack for a specific language to see the messages come in the particular language. I installed it and it is working ...Show All

  • Visual Studio Team System Weird Compare Issue

    When I click the "Check-In" button on a TFS SCC project in the source control explorer I get a list if .vspscc and .vssscc file conflicts that occur. When I click on resolve and then click the compare button I get a pop-up window that has the notification icon, 2 buttons but no text at all. Not even on the buttons. What is going on here I installed TFS about 4 days ago. Cheers, Mark Yes it does, constantly, but only when in vs2003. Also when there is a merging confilict and I click to view it in the merge tool, all the buttons like Ok and Cancel have no writing on them at all. Ill try to post a new picture on flickr for this as well Mark ...Show All

©2008 Software Development Network