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

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

Kaplan

Member List

Knuijver
Dhirajgupta27
Rab Lucas
OOC#
Sueva
vb2005Coder
jeremymy
anjin
TailsNZ
Inc
Nicolas Coderre MSFT
cristi79
JustCheckin
CLearlyDotNet
Charles Darwin
Edward Bakker
RLPV
windark
Luiz Guilherme
Justinsfddsfsfd
Only Title

Kaplan's Q&A profile

  • Visual C# Visual studio 2005 can't generate XML

    Hello, I have a little problem with vs 2005 (i use c# but i don't think that really matters for this problem) I have a form which is localizable (this is important because on a localizable form, the size of controls are stored in a recourse manager) On my form i have a table layout panel wich dock fills its parent (so it will grow and shrink when you resize the form). I would like to have 8 rows in my tablelayoutpanle and a simple calculation gives 12,5% height for each row. When i go to "edit rows and columns" i can set the size of my columns in % (the number format used in the edit form is "XX,XX" so entereing 12,50 is no problem. But whe ...Show All

  • Visual Studio Express Editions Registration Benefits - IconBuffet

    I have been working with VW Dev Express and have accessed some of the benefits from the Registration Benefit Portal.  I would like to be able to get the IconBuffet item, however, it does not appear to be one of the benefits of VWD.  Does anyone know which Express software includes IconBuffet as a registration benefit --Charles I understand who gets what but the actual Benefits Portal does not have the IconBuffet.  Does anyone know where to find the IconBuffet   Even though this is advertised as a benefit has anyone ever seen this benefit Thanks ...Show All

  • SQL Server Index on bit fields in SQL Server Management Studio

    I noticed that I can put a bit field in an index in a SQL Server 2000 database, while using the SQL Server Management Studio (shipped with SQL Server 2005). In SQL Enterprise Manager this wasn't possible. Does SQL Server 2000 support indexes on bit fields and doesn't Enterprise Manager support it, or doesn't SQL Server 2000 support indexes on bit fields and is it a 'bug' of the SQL Server Management Studio Thanks. My experience tells me that this is not true. When the SQL Server only has to access an index instead of the real table, this can increase performance. In the past we've converted Bit fields to Ti ...Show All

  • Visual Studio Team System Installing TFS - Error 28002

    Over the past few days we have been installing a single server deployment of TFS on a Win2K3 server with a domain administrator account. The error we get is Error 28002 (about 90% through) during the install. We tried this install many times on two different servers, as well upgraded the Domain Controller from 2000 to 2003. We even setup the install TFS account to have full domain administration rights. The error in the system logs: ------------------------------------------------------------------ Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU -- Error 28002.Error unknown. For more information, see Help and Su ...Show All

  • Visual C++ How to write an App with no console window at all

    Hi I haven't written any C++ since VS6 so I'm rusty and please pardon me. I have a need for a very lean application which runs as a native mode executable with no accompanying libraries or manifest file. In other words this program behaves in the manner that a VS6 application would. I seem to recall that I could get a program to run without a console window by deassigning stdin and stdout but that may have been in a detached child process. Can anyone tell me how to do this If you create a windows program you don't get a console window to. There is no need to create your own window. Just use the wizard and create an Win3 ...Show All

  • .NET Development Connecting to a database and parameters in sql

    Hi, I am creating a small web app, that searchs a database depending on the information the user enters onto the web form. I create the connection to the database by using the visual studio wizards by binding the data top a grid view. Below is my code SqlParameter word1 = new SqlParameter(); word1.ParameterName = "@tb_1"; word1.Value = TextBox1; SqlCommand cmd = new SqlCommand("SELECT * FROM ApprovedComponents WHERE Vendor = @tb_1"); cmd.Parameters.Add(word1); //Used this in hope after entering cmd into SqlDataSource1.SelectCommand after cmd failed const string command = "SELECT * FROM ApprovedComponents WHERE Ve ...Show All

  • Smart Device Development Serialport XON/XOFF Handshake State

    Hello all I found the following problem/speciallty in SerialPort I/O with XON/XOFF handshaking. When the SerielPort is opened and set to xonxoff handshaking it is ready to send files, so it is in xon state. When I send a file to the reciever and my device recieves an xoff after the transmition is complete it is then in xoff mode. After this I can't send anymore files because the port is blocked in xoff and my reciever won't send an xon to start. The other thing is I don't know wich state it's in. I have to close and reopen the port to get back into xon mode, then I can send the second file. Does anyone know if the serialport ...Show All

  • .NET Development How to send and receive xml data via HttpWebRequest/HttpWebResponse in windows forms applications.

    I am having hard time to post xml data to my web site (or to aspx page) which is running on IIS server. I am trying to post the xml string from windows form application. I am using “HttpWebRequest” class and reading the response using “HttpWebResponse”. My code works fine when I send plain text data, By setting request.ContentType=@"application/x-www-form-urlencoded ". When I try to send xml string I get 500-server internal error. I changed the request.ContentType= "text/xml;charset=\"utf-8\""; now error disappears. But when I debug my aspx page in web site, I don’t see any values coming in t ...Show All

  • Smart Device Development Connect SQL Server Express from Pocket PC

    Hi All, I am new in .net and also in pocket pc. I would like to know how to connect to SQL server using bluetooth if I use the LAN, then may I know how is the connection string and what is the thing I need to imports or declare. Hope can get some idea from all the experts. Thanks. You need to use SQL Client just like on desktop. Physical media (Ethernet, Wi-Fi, BT) is irrelevant as long as you're running TCP/IP over it. Your server should be configured to use TCP/IP as well. SQL Express has this disabled by default, so you'd need to enable it. Please see this for general connection issues: ...Show All

  • Visual C# create a XML ini file

    Hello, I have an application where i need to select a data from and XML file and assign this data to a variable. I would like to create a kinda .ini or .cfg file where the next time the user use the application it automatically load the previous choice so that the user doesn't need to reselect that same data. of course if a different data is needed then it should overwrite the xml.ini file which only contains the selected XML data. Any suggestion Thank you Did you try using App.Config in your application (or Web.config) with key value pairs to retrieve and store values The .net framework has inbuilt support ...Show All

  • .NET Development Typed Dataset - How To Generate

    VS 2003 was simple.  Create xml data, right click generate schema, right click and generated typed dataset. How do I do this in 2005 Dave   pugs wrote: I'm also having this problem in VS 05. It was or used to be simple to generate a dataset from an *.xsd file. I'm finding this a real problem in 05. I've imported an xsd file and would like to generate a typed dataset from it but it doesn't work with what has been suggested in this thread (designing in the dataset editor does not work or I'm missing something, which you to be simple in VS03). Any ideas   Is this by design or h ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Directx 10 names clarification

    With my copy of Vista downloading, and my .Net 2.0 projects ramping up, I'm running into a wall trying to figure out these code names of the graphics subsystems. Do I have these right 6.  -> AERO = managed app framework 5. Avalon -> Presentaion Foundation = XAML 4. Directx 10 -> Graphics Foundation = 3d Pipeline 3. Win32 -> WinFX = dot net framework 2. HAL -> new driver layer 1. Longhorn -> Vista WGF 1.0 is D3D 9.L. A D3D 9 version with some extensions for the Vista UI. WGF 2.0 is D3D 10. Both share the same new driver model (LDDM). But if you look at the new ...Show All

  • Visual Studio GetCanonicalName() Error

    Hi I am getting the following error, is there any way to find out which type it cant find in the map as i have a lot of types but when i drill down into the map through the debugger they all apear to be there i think. if this should have been posted elsewhere please let me know cheers. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary. Server stack trace: at System.ThrowHelper.ThrowKeyNotFoundException() at System.Collections.Generic.Dictionary`2.get_Item(TKey key) at Microsoft.Visua ...Show All

  • Visual Studio Team System Binaries from Website bin directory is still getting added to source control

    I've a Solution with a Web Project which has project references within the same solution, when I first added the solution to the source control, all the assemblies, PDB files from the website bin directory got added to the Source control, I had to manually delete them, I thought this was fixed..but its still happening..is this a known issue - Thanks, Krishna Hi ParkinT , A stab in the dark but I am having a similar problem to yours "Cannot copy assembly" Can you remember what the solution was ...Show All

  • .NET Development How do you get the C# programs to Pause when you compile

       I am   trying to compile a C# program and see the result but the screen blinks and then cuts off real quick how do i pause this so i can see my result cin.ignore() you know doesnt work...so HELP Strange... Check the Text Size option in the View menu. It should be set to "Medium". ...Show All

©2008 Software Development Network