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

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

George_egroeG

Member List

geppy19
SpyderF16
djdarkblue
Arturo_RX7
Matt Bond
Code4Fun2000
KGW
nub
kbailey
fleetfingers
Ken Walters
Xancholy
rvsrinu
jpadilla
viral@excellenceinfonet.com
Debbio
Charley Vasconcelos
ckeaton
Aaron Gibbs
requiem001
Only Title

George_egroeG's Q&A profile

  • .NET Development user control in C#

    Hello, what is the best book about user control development in C # Thanks Hi, I would recommend the following books for Control Development: 1. GDI+ Programming: Creating Custom Controls Using C# 2. User Interfaces in C#: Windows Forms and Custom Controls Regards, Vikram ...Show All

  • Visual C# MouseHover EventHandler

    I am trying to add a new mousehover eventhandler for a picture box. This is the code that i put. pictureBox1.MouseHover += new EventHandler(pictureBox1_Hover); But its not working. It says the name picturebox_1mousehover does not exist in the current context. But I add the event handler. Can someone tell me the problem please. I tried this. Its Working perfect. this .pictureBox1 = new System.Windows.Forms. PictureBox (); ((System.Comp ...Show All

  • .NET Development Trying to understand Strongly Typed Data Sets... Help!!!

    Ok, so I want to use stronly typed data sets. I created one by right clicking on my project, add, add new item, data set.  I then dragged and dropped a table from the database I'm working with onto the designer.  It showed up and everything looks peachy. If I fill the dataset with a simple "SELECT * FROM tblApplicationName" it works just fine.  But when I attempt to "SELECT * FROM tblApplicationName WHERE (ApplicationID = 1) ...Show All

  • Visual Studio Team System All Unit Tests abort immediately

    I've been using the TestManager extensively in Studio 2005 Team Version for months running dozens of unit tests as I develop. Recently, every time I try to run a unit test *in Debug mode*, it aborts immediately with no message. When I open the test results, all I get is this: Test Name: <test name> Result: Aborted Duration: 00:00:00 Computer Name... Start Time: 1/1/0001 12:00:00 AM End Time: (the real date time) ...Show All

  • .NET Development Grouping XML Elements

    I am new to XML and am not sure how to sovle this issue. I have an XML file that contains the following: <TRADE> <ABC>xxxxx</ABC> <ABC type="U"/> <XYZ /> <XYZ year="06"/> <XYZ month="02"/> <XYZ day="15"/> </TRADE>   I basically want to group the elements as such: <ABC type="U">xxxxx</ABC> <XYZ year="06" month="02" day="15"/> &nb ...Show All

  • Visual Studio Team System Permissions Bug with Beta 3 and Active Directory Groups?

    When using an Windows 2003 Server Domain Active Directory Group to assign Team Foundation permissions to multiple users, the group members do not have the selected permissions if the primary group (for POSIX and Macintosh applications) of the account in AD is set to the group to which the permissions are being assigned.  If you double click on the group in the Team Explorer GUI or select the Properties... button, the accounts with primary g ...Show All

  • Visual Studio Team System Groking Shelvesets

    So I created a shelveset that I called Bug-56-Fix.  It contained a couple of files that were edited.  I then logged in as a different user and unshelved Bug-56-Fix and tweaked one of the files in the original shelveset and another file that wasn't in the original shelveset.  Now if I want to get the second user's updates back to the original owner to review and check in, how do I do that   I was sort of expecting to be a ...Show All

  • .NET Development Why do I get a SecurityException when running from the network?

    Hi,   I 'm writing an EXE file using C#.  In my EXE, I'm trying to get access to Environment variables.  Everything is working fine locally.  I have the statement "Environment.GetEnvironmentVariable("TEMP")" which works on my local machine.   As soon as I transfer the program to a networked drive, everytime I run the application it spits out the following error message: --- BEGIN SNIP --- Unhandled Exception: System.Type ...Show All

  • Visual Studio 2008 (Pre-release) Why is the RenderedGeometry not transformed when retrieving it from a shape.

    Hi, I’m drawing shapes in a canvas and apply rotation transforms on them. I then retrieve the RenderedGeometry from the shapes. Isn't the RenderedGeometry supposed to have the same transformations applied to it as the shape. If I rotate the shape I've realised that the rendered geometry is not rotated, why is that so The shapes are also moved with Canvas.Left and Canvas.Top, but the RenderedGeometry is not translated accordingly, so each time I ...Show All

  • Windows Forms Embeding Word into an application

    My user wants to have reports in Word format.  Is there a way to embed the Word API into a .NET app   Are there any articles discussing this Your help is apreciated. Kaytrim Well, assuming that the end user will have Word&nbs ...Show All

  • Architecture XMI to Model

    Hi, If we have an XMI file generated by a tool (used ArgoUML), is there a way to construct the model back from the XMI file (i.e. visually). Is there any tool or plugin which does that Thank you. It would be great if you could be more specific about which models are you working with, and where you want to construct the modul back. Dependening on your specific details, there may be ways of us ...Show All

  • Visual Studio Wrong Re-Install Procedure. Problems running VS2005.

    Hello, I have a serious problem in my system and I need Help or else I'll need to reinstall windows again. This is the situation: I installed the VS2005 beta 5 and everything worked out ok. I have an ideia for a project and i needed to install a third-party component to test. to install the component i had to install the last built of the SDK Framework. Big Mistake. Manage to install the component, but i messed up VS2005 since it started to c ...Show All

  • Windows Forms How to make the end of TextBox.Text in view?

    I have a TextBox with WordWrap to false and Multiline to true. I am using it as a text editing box for my application. I can set the cursor to the end (SelectionStart and SelectionLength). But how do I programmatically make the TextBox to display the content with the last character (cursor) in view when the text is longer than the width of the control Thanks in advance. Have you tried the TextBox.Scro ...Show All

  • Visual Studio Tools for Office Office add-in does not load on Windows Server2003 in terminal mode

    Hi, I have seen that others have similar problems and i can only confirm this to be a problem. We have add-ins vreated in 1.0 and 1.1 of the framework. Now we uppgraded to .NET 2 and suddenly nothing works when in terminal server mode.. so to be sure i have just created a new add-in from the vs2005 wizard with a simple "hello World" messagebox in the "onConnect" method - works fine localy but nada on the terminal server ma ...Show All

  • Windows Forms DateTimePicker with Month selector only

    Is it possible to limit the DateTimePicker to select Month only What I can see you will have to choose a day in a month, you can display only the month to the user. You can also use the resulting DateTime to extract only the year and month. dateTimePicker1.Format = DateTimePickerFormat .Custom; dateTimePicker1.CustomFormat = "MMM yyyy" ; ...Show All

©2008 Software Development Network

powered by phorum