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

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

gul_111111

Member List

Remco van Reij
ProNovice
Johan Bellander
Igor Kryltsov
bartonking
Yottie
pippyn
welsh
FredZmith
hackwrench
bayarea.rob
FransHals
ronmal
Wilson Dutra
WebTest
Dave Green
snatch
DragonsBlade
DaniMaia
JustinDyer
Only Title

gul_111111's Q&A profile

  • Visual C# Create Too Many Forms

    is there way to create form just when i want like vb6 form.show() shows the form but in C# when i want to show the for i have to use form frm = new form(); that create too many form so when i pass value i cant pass it to the certain form i want and other question if i have more than one form how i can pass the value to the form i want i hope that it was clear sorry for my bad english Ah... in that case, you probably want to keep a list of instances of your chat window class, and push them into the array as you dynamically create them. List<MyChatWind ...Show All

  • SQL Server Best way to restrict a varchar field not to contain spaces?

    Hi,  is this the best way ALTER TABLE MyTable     ADD CONSTRAINT CK_MyTable_NoSpace      CHECK ( charindex ( ' ' , MyColumn )= 0 ) Is there any other way Thnx Thanks Simon SimonSa wrote: NOT LIKE '% %' It would have to be trimmed first no or maybe: NOT LIKE '% %' AND NOT LIKE '% ' AND NOT LIKE ' %' SimonSa wrote: What is the reason you need this File system entries. The OS allows them but I want to restrict them. It is also being done in the DAL. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Which C/C++ IDE does Bungie [major studios] use?

    Hi, Most importand and the most basic question I'll ever ask! :] I just spent 7 months studying DX for C# only to browse 20 major studios last night and find *to the man* they want C/C++ DX programmers. I'm trying to avoid a repeat. What IDE does a Bungie developer code in Or a Valve programmer If a hardcore game developer is using C++ these days, what IDE is he/she most likely programming in My most basic fear is that if I start learning Visual C++ .NET that that will turn out to be managed and therefore development studio interviewers will say it's slower than unmanaged C++ or something, and that I should have been studying in som ...Show All

  • Visual Studio Team System (Some) Team System TechEd Webcasts Available

    [UPDATE:  As of today at least, only some of these are sessions from TechEd.  The others (including the VSTS ones) are simply older related webasts.  -Chris] Just FYI that many of the sessions from TechEd are available online as on-demand webcasts: http://www.microsoft.com/events/series/teched2005.mspx Here are the Team System related sessions: MSDN Webcast: Building Secure Applications with Visual C++ and Visual Studio Team System MSDN Webcast: Drill Down into Visual Studio Team System: Team Architect (Level 200) MSDN Webcast: How and Why Process Guidance Matters in Visual Studio 2005 Team System (Level 200) ...Show All

  • SQL Server Is this possible?

    Hey guys, I wrote a T-SQL query to retrieve all errors name and count the error for each error name based on some conditions. Assume that errors_name is a column name in Error table and the error_count is a calculated field. Here is my question; when I run the query, obviously, it displays the list of errors name and the corresponding errors count which only meets the where condition . However, what I need is to list all the errors name (even if they don't meet the condition) and assign a zero value to the error count column for those errors name that do not fulfill the where condition. Can anybody assist me Appreciate your ...Show All

  • Visual FoxPro Calling a report with a command button on a form

    I'm trying to call/open a report with a command button that resides on a form.  How can I do this   I'm new to VFP & I've searched the help file but found nothing. As Andy said, you can set it up in a startup program. That is a better option than hard-coding it in a Config.FPW How do you set up a startup program Create a simple text file called CONFIG.FPW (if you have one already just modify it). Add there any SETtings you want at startup. VFP will read this file first if found (you generally put it in your startup directory). Here's a sample. All lines are optional, just use what you want. ...Show All

  • Visual Studio Team System Struggling with basic questions

    Hi, We have just installed the trial version of VS2005 for testers, in order to understand whether it can be used by our testing team. Unfortunately, even supported by one developer, we are still struggling to understand how many things we will ba able to do without passing to put the hands in the code. I don't feel very comfortable with the Load test editor, because I don't manage to solve basic problems such as: 1) Remove the counters. I don't need at the moment any sampling counters of the server, but I don't find the way to remove them 2) I don't understand where the results are saved. Even selecting "XML" ...Show All

  • SQL Server List all your connection managers

    Hello, I'm building a custom task which has a property ConnectionManager which obviously allows you to select which connection manager you're goinng to use. I know how to get the list of connection managers but how do I make them appear in a combo-box in the properties pane Anyone got some code for that Hopefully this is fairly trivial for you developer types out there. Thanks Jamie I believe that the key is the TypeConverter property of property objects. If you were talking about a custom property in the Data Flow (which I realize is not your question) whose values came from an enumeration, using TypeConverter would both constrain the ...Show All

  • SQL Server Unable to install

    Is there something out there regarding how to remove all the remnants of SQL 2000 so that I can install SQL 2005 Express   The uninstaller left stuff, but I'm not a real registry whiz.  Also, English Query won't uninstall with its own uninstaller.  Any advice there   Thanks You need to get Windows Installer Clean up program. This will go in and clean up any remaining registry entries or left over files.  You can link to it from this page:  http://windowsxp.mvps.org/MSICLEAN.htm ...Show All

  • SQL Server Basic Mirroring Setup Help

    After going through the Enterprise Manage mirroring setup, I get the error message ... The server network address "TCP://MYMACH.mynet.net:5022" can not be reached or does not exist. Check the network address name and reissue the command. (Microsoft SQL Server, Error: 1418) I have three instances of SQL Server 2005 Enterprise Edtion MSSQLSERVER (primary) endpoint 5022 MSSQLSERVER (partner) endpoint 5023 MSSQLSERVER (witness) endpoint 5024 I have enabled TCP\IP and named pipes on all three protocols. In surface configuration I have enabled everything. Each instance has the -T1400 flag set. Each instance is running under mixe ...Show All

  • .NET Development Error Compiling my project - Referenced assembly 'Interop.MSXML2'..

    Hi: I have already created my strong name key for my application but when I compile the solution again it tells me that "Unable to emit assembly: Referenced assembly 'Interop.MSXML2' does not have a strong name". My project is a client side application and I have created in the root project a folder called "Strong Name" where the projects key resides. Would I have to create a strong name for the MSXML2 Can someone help I would appreciate it -SL I was reading this article that help me decide to remove the strong name in my Application it says "What Should Not Be Strong-Named In general, you should avoid strong-naming applicatio ...Show All

  • Software Development for Windows Vista How to use DirectShow to save a vidieo as a file of frames?

    I want to save a input vidieo as a file frame by frame.Can you tell me how to realize it by Directshow I'm fresh to using Directshow.Can you help me Thank you very much! Now I can use the mpeg2v12 decoder to save a vidieo as a frame format. Actually I want to run the mpeg2v12 encoder and decoder successfully, and transform them to filters. Thank you very much! ...Show All

  • SQL Server cannot convert between unicode and non-unicode

    I keep getting the error message below when attempting to import a text file (flat file) to an SQL Server Destination using SSIS. This database has recently been migrated from SQL Server 2000 (where I used a DTS Package that worked fine). I plan on doing further manipulation to the file after importing but have so far tried to keep one step at a time. I have tried using a smaller files and different tables but still get a similar response. I believe that the encoding of the text file is ANSI. If it is relevant the database collation is Latin1_General_CI_AS (the same as it was when 2000). Any help anyone can provide will be greatly appreciate ...Show All

  • Windows Forms Chart componant for C#

    hi, where can i get (free or cheap) chart componant for C# or windows and web applications. thanks.. you may find the following link is useful: www.authors.unicadpublish.com/~jack_xu/ ...Show All

  • Visual C# Arraylist and multiple values

    Hi I would like to get a kick in the right direction when it commes to store mulitpla values in an arrylist. 01,Matt, Trautman, Rice Road, KS 02,Kim, Andersson, ...,... The only code i have found so far is to save... 01, matt 02, kim Br /Matt ...Show All

©2008 Software Development Network