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

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

EltonSky

Member List

André Tadeu
JoeR
cmhaas19
Matt Clements
RussSpitler
Ralf Gruenewald
samiha
A tawil
aoporto
Keith Mange
Jeff Bogdan
Muzzzy
Soen
CplusplusBeginner
Todder
Tom Lake
Steve Teixeira
RYoung
LabibaSeif
Fab IT
Only Title

EltonSky's Q&A profile

  • Visual Studio Team System Beta2: Cannot create a Team Project

    I am not able to create a new team project. I'm logged in as a domain user with local administrator membership. On the last screen of the wizard I get this Process creation failed with error: "Initializaton failed for plugin(s): "Microsoft.Pcw.wss"" Here's the log content: 04/22/2005 01:48:54.478 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://syd-3rtest:8080/bisserver/EleadWebService.asmx " from the registr ...Show All

  • Windows Forms Keys Property

    Hi, I am working on a tetris control which is almost finished. At this point I am adding property grid with options at run-time. I have properties with Keys values to let the user choose Keys to move figures left, right and down. But  ...Show All

  • Visual Studio 2008 (Pre-release) About WCF Security

    I have a couple of WCF Services that a client is going to use. When the users login on the client i want to authenticate them using a authentication service that recieves the username and password. The authentication service compares the credentials to a userrow in a database. After the client it authenticated i want the user to be authenticated to all my services. My requiered scenario assumes that i get some kind of "object" as a ...Show All

  • Visual C# Urgent reply needed for C# mini project

    Hi all, I had a problem in my mini project. Its a case of game of having many rooms and we need to move through the rooms. I can move through the rooms without any problem. But the problem is I have to put a condition for a room like, if I enter into that room, i will be transported to a random room in the game. I have a Room class with constructor below public Room( string description, string longDescription) { } I have created a method to ...Show All

  • Visual Studio Express Editions Setting page size in code

    Hi, Can anyone help with this please I am trying to set the paper size for the print page method in code, however, It fails to change I have tried many properties and ways of setting it but it fails Basically I have a app that saves the page size to a xml file as an interger value that represents the paper size. Eg 8 = A3. I cannot seem to change the default value of the PoPrintPage_Printpage method from the value of 9 (A4) ...Show All

  • Windows Forms datagrid question .net 2003

    hi dev's I got a datagrid with a comboboxcolumn normal behavior with a combobox is that , when it's droppeddown then when you moving the up and down keys you go up and down in thge list of the combo. however in the datagrid, when moving up and down when the combobox is dropped down, it goes to the next record in the datagrid The question is can i change that behaviour in a columnstyle Remco  If you are usin ...Show All

  • .NET Development .net software to display correctly internationally

    We developed a softare using .net framework 1.1 but was only created and tested in the Windows USA environment. When we installed it on a Chinese Windows XP version, because of the display of the font is different, a lot of the wording will not display properly. (e.i.  The Toolbar on top will show the different titles correctly in the USA but in the Chinese version, it will use more space, therefore will not show the entire title) ...Show All

  • Visual Basic Problem with form and the window designer.

    Hi, I have a project who have some forms. The first one is named form1 as usual. But, I do have a problem. In my solution explorer, I don't see the Form1 (Design). I only see it's code, not it's design (in the designer) so I can't modify it's controls. What is weird, when I try to add this form to my existing project, it imports without any error and it compile exactly how it's supposed to be. Here's the structure of my project : For ...Show All

  • Visual Studio 2008 (Pre-release) What the method EntitySet.RemoveAt is for?

    When I remove an entity with this method, the entity is removed from the collection. But when I then call SubmitChanges, no commands are send to database.   Vitali Lesheniuk wrote: > Removing an item from an entityset does not cause deletion.  It merely breaks > the link between the two entities (foreign key is set to null.) I didn't write only about deletion. Broken l ...Show All

  • Visual Studio Where does VS2005 store source control provider info?

    In VS 2003 and previous versions, the list of source control providers and the default SCC provider were stored in HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider. It looks like Whidbey does not use these values.  I'm trying to make sure that our SCC tool will appear in the Whidbey list, and also have the capability for the user to set the default VS SCC provider from our app.  How do I do that in VS 2005 ...Show All

  • Visual Basic Need a VB6-to-VB.NET translation

    I have a block of VB6 code to be translated into VB .NET if possible. The block of code reads as follows: Option Explicit Private Sub cmdClose_Click() Winsock1.Close End Sub Private Sub cmdConnect_Click() Winsock1.RemoteHost = InputBox _ ("Enter remote host (IP address or name)") Winsock1.RemotePort = 1066 Winsock1.Connect End Sub Private Sub cmdSend_Click() If Winsock1.State = sckConnected Then Winsock1.Se ...Show All

  • Visual Studio Team System Test Director Defect Mapping to VSTS Work Item

    We need to be able to map Mercury Test Director defects into VSTS Work Items for developers to work...has anyone written a custom conversion utility After some finger trouble with configuring this utility I now have this synchronization up and working between TD 8.2 and TFS (two way). Things seems to work correctly so far even if running on a beta version of the Juvander software. Some experiences Having this ...Show All

  • SQL Server Problem during the process database

    This is the error when i execute the code for the association algorithem. "Errors in the high-level relational engine. The data source view does not contain a definition for the 'receiptid' column in the 'receiptdesc' table or view.". Dim ds As New RelationalDataSource( "miningas" , "miningas" ) ds.ConnectionString = "Provider=SQLNCLI;Data Source=localhost;" & _ "Initial Catalog=miningas;Integrated Security=SSPI" db.D ...Show All

  • Visual C# Error with toolbar (when reinstall Crystal Report)

    After I reinstall Crystal Report I get an error when drag CrystalReportViewer into my Form.(VS.net version 2003,CrystalReport 9.0). Before I reinstall CrystalReportViewer in VS.net is 9.1.5000 After that is 9.2.3300. Please help me solve this. Thanks in advandce ! ...Show All

  • Visual Studio Problem building Managed C++ project with Msbuild that has multiple assembly references

    I have a VS2005 solution that includes a Managed C++ project as well as several C# projects. The C++ project references several of the C# projects. All projects in the solution reference log4net.dll (as an AssemblyReference). My C++ project builds without any warnings using the VS2005 IDE. However, when I build the solution using MSBuild, I get zillions of warning messages such as: log4net.dll : warning C4945: 'LogicalThreadContextProperti ...Show All

©2008 Software Development Network

powered by phorum