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

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

AmyKutty

Member List

Faisal Mohamood MSFT
Vic N.
Ravengbc
Michael Mockus
Christopher Chan
sam8sam
efratian
Nishith Pathak
Anonymous123123132
Dani
hssj
kishor mungelwar
thanasis_b
DWS
debugging problems
Darren996
Dan Straw
WilsonY
jw700
Makubex
Only Title

AmyKutty's Q&A profile

  • Visual Studio 2008 (Pre-release) Virtualizing Wrap Panel?

    I need to have a wrap panel for the ItemPanel with the virtualizing option. Why there is no virtualizing wrap panel. Do I need to create another View control for the ListView to show items one after the other or the wrap panel is the only solution without virtualizing Thanks I'm sure they'd love to provide an implementation of every panel in virutalizing form, but WPF is huge and they have to focus on delive ...Show All

  • Visual Studio Express Editions sql express database

    Hi, I've created databases using sql 2000 etc, but how do you create databases and tables on sql express There is no Enterprise Manager or query analyser that I can see Do you have to create them through Visual Studio intead Glad it helped Jimmy_fingers.  Could you please mark this post as "Answered" (instructions below)   This helps other users that are searching know that this post provides an answe ...Show All

  • Windows Forms Messaging in Windows forms

    Hi there all! I'm a newbie to this forum, my first question is I'm building a windows app where I want the user to be able to fill out a form and click a button and have the forms contents saved on sql server and instantly receiv ...Show All

  • Visual Basic Work with DHTMLEdit

    hi, I want use DHTMLEdit1 in own program and set DocumentHTML with Html code that include "Link", for Sampsel this code: <html> <body> <p dir="ltr"><a href=" www.yahoo.com</a></p> " target="_blank">http://www.yahoo.com"> www.yahoo.com</a></p> </body> </html> then in DHTMLEdit1 set BrowsMode to True and running program. when ...Show All

  • Windows Forms Adding images to subitems in a listview control

    Is it possible to add images to subitems in a listview control I have looked at using the stateimagelist, but this only applies to the item, and has only 2 states, checked or unchecked. I need to have different images for three subitems. Thanks, I just tried this method and found it to be very deficient. It's impressive until you put your mouse up to the listview only to find out that the item ...Show All

  • SQL Server Query Results Truncated in SSMS

         I'm running a query in SSMS that returns a large result set.  The query runs fine without error.  However, in the results pane the query results are truncated.  I've tried adjusting every option I can find.       I think I'm running into a limit on the number of characters displayed in a column in the results pane.  I've already bumped up the amount to the max (8192) setting i ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. issues installing DXSDK_Dec2005.EXE

    Hi, I downloaded the SDK (december 2005) and I cannot install it. A window comes up saying: "Extracting file failed. It is most likely caused by low memory (low disk space for swapping file) or corrupted Cabinet file." Well, my machine has 2Gb of ram and my swap is the same size so I think the file is corrupted. Can anyone send me a link to a zip file that has the SDK extracted or a link to an EXE that has been tested to work I have d ...Show All

  • Windows Forms Winform cold startup time in .Net 2

    Having just moved to .Net2 and Visual Studio 2005 (release version), I'm porting my WinForms app to the new environment. I'm very concerned about cold startup time for a WinForms app. It's orders of magnitude slower than in 2003. I tried NGEN'ing the app. This made it start slightly faster but still a lot slower than the non-ngen'ed 2003 app. I realize that this will improve when more apps are built using the framework, but that's years o ...Show All

  • Windows Forms retrieving the 'main' form

    is there any way for a Component to obtain a reference to the Form-object to which is was added that is, is there any static method to retrieve (any) Form-objects that have been instantiated. or is there methods in the Component-class which can give the 'parent'-Form of that Component though, I know that Components may exist without beeing added to a Form... but what I like to have is a reference to th ...Show All

  • Software Development for Windows Vista Is the Task Dialog modal within its parent window or systemwide?

    Long story short: Currently there is no way to make a dialog modal with respect to only one window. IE: I want to be able to minimize MSWord even if it has a modal dialog popped up. Currently this is not possible. Every program when popping up a modal dialog completely hijacks the screen. The only way around this is the: 'Show Desktop' button. Mac OS X already does this. It has modal windows attached to parent windows only. In windows Vist ...Show All

  • Visual Studio Team System Reply

    Hi, Can you pls. suggest whether these can be implemented, if so pls. guide me how to go about it. 1. DataSets should be used to serialize data and configuration information to/from files 2. XmlSerializer should be used to serilaize objects to/from files 3. Must use Compound word to name a derived class. It is not necessary for Controls. 4. Where appropriate, use well-known acronyms to replace lengthy phrase names 5 ...Show All

  • Visual Studio Team System Tools/Connect to team foundation server -> unable to connect to the remote server

    I've installed a single server tfs beta 3 and successfully connected to it from vs2005rc1 by using the server's internal ipadress. However now my laptop isn't connected to that internal network anymore and i want to connect to a different tfs but as soon as i click Tools/Connect to team foundation server i get "unable to connect to the remote server". It seems like it's trying to connect to the existing tfservers when going to that wizard but it ...Show All

  • Windows Forms Text does not appear on form load

    Here is the problem. Certain controls don't display text. I will create a form in the IDE that has group boxes and combo boxes on it. The combo boxes only display text on the top line or the line that I select. When I click the dropdown, nothing else is displayed. As for the group boxes, the header displays, but any labels inside the text box don't display any text. They show up in the IDE, but not at runtime. I have a screen shot showing the ID ...Show All

  • Visual Studio Team System Work items menu in Excel

    Hi there, I am having some problems installing the Team System Client. when i install the TS Client in Windows 2000, it show the "work items" menu in MS Project, but not in MS Excel. It works fine if i use Windows XP or Win 2003. what is the problem with Windows 2000 Thanks in advance, Guino. The # 3 was the solution! 3.  Create a '1033' directory under <program files>\microsoft office\office11 (if it doesn't already exist) ...Show All

  • Visual C# A couple of small newbie C# questions.

    I'm making a breakout game in C# to try and help myself understand Structs. I used this code to define a "brick" object... struct obj_brick { int x, y; Boolean removed; Image sprite_index; public void draw( Graphics g) { if (removed == false ) {g.DrawImage(sprite_index, new Point (x, y));}} public void remove() {removed = true ;} } I can easily now create instances of obj_brick like so: obj_brick myBrick = new obj_brick(); //cr ...Show All

©2008 Software Development Network

powered by phorum