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

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

Dragonslayer

Member List

BartVN
EWoodruff
halfazner
Tariq Ayad
Raupes
Daby292002
Steve J Wright
michael.e.obrien
SeTK
Rania
Mattias Asplund
Tommy0204
Megakemp
Squeaker
MattMan73
Alexandre d9654039
bhowden
VbArch
f.ritz
Ansel
Only Title

Dragonslayer's Q&A profile

  • .NET Development Scenarios for running 32-bit dll's (WOW64) from a 64-bit (x64) host process?

    One way to make a .NET application using a 32-bit DLL is to compile it with a \platform=x86 directive. But this naturally degrades the host application to also be a WOWing application in the 64-bit system. Is it possible to wrap such 32-bit dll's for example in a .NET console compiled with \platform=x86 and then execute this from the host process application using for example ShellExecute (ShellAndWait) and letting the host process application be a true x64 app What scenarios is available Regards Peder Peder: As you point out you can not use binaries of mix matched bitness. Ie. Can not use 32 ...Show All

  • Visual Studio VSS 2005 RTM setup failes on Win2k

    Attempting to install on Win 2k Pro and recieving error "Setup.exe - Entry Point Not Found"  This is a fresh OS install and only Office XP and SQL Client tools have been installed. All windows updates have been installed including .net 2.0 and 1.1 with all subsequent updates. I cannot find anything on this error at all. It installs on another Win2k computer here in the office, but not mine. Any thoughts on a solution The craziest thing just happened. Having copied it to the hard drive I supposed I eliminated all CD drive related issues. In desperation I stuck the install disc in the cd drive of another pc and shared the d ...Show All

  • Visual Studio Team System Branching is Broken - Severe SQL Error

    About two weeks ago I was able to successfully create a feature branch off of our Main\Src directory.  Last night I tried to help a co-worker create a different feature branch off of Main\Src.  We tried from the VS 2005 UI and via the command line with no luck.  Both ran for 15 minutes without completing.  Finally we left the command line branch going all night and when we got back in this morning the following error message was displayed: C:\Foo\Branches\Feature>tf branch $/Foo/Main/Src $/Foo/Branches/Feature/XYZZY A database error occurred (SQL error 0) ---> A severe error occurred on the current command. The r ...Show All

  • .NET Development TypedDataSetGenerator class?

    Are there any examples available of how to use the TypedDataSetGenerator class in the System.Data.Design namespace to programmatically create Typed DataSets Thanks Hi Wn, This is actually an internal class we use to generate Typed DataSets, and their associated TableAdapters based on the Typed DataSet Designer.  In order to maintain backwards compat for users that may be using the old generator, System.Data.TypedDataSetGenerator we moved this to a new namespace, System.Data.Design. What are you trying to accomplish with the generator Steve Lasker Program Manager Visual Studio Data Designtime blogs.ms ...Show All

  • Visual Basic Docking forms

    GDay All, I am a newbie to VB.net and I'm trying to dock a form into a toolstrip. The 1st form has a toolstripcontainer and the 2nd form is set to borderstyle = fixedtoolwindow. Can I dock the 2nd form onto the first form so that it behaves something like the properties window in the VS2005 IDE If not, how can I achieve a similar function to that of the properties window in my application Any help would be appreciated. You can program that funtionallity in your own "user control", or you can do some googling and find 3rd party controls that already have that funtionality... here is a great place ...Show All

  • Visual Studio Team System MS Project integration

    I have created a MS project that contained a number of tasks and was able to publish these to a team systems project along with doing some updates etc. After playing with it for awhile I used the tfsdeleteproject to delete the team project, created a new one after doing some changes to the work items and gave it a differnt name. The problem I now have is that the .mpp file that I originally created seems to still want to be connected to the original deleted team systems project. Is there a way to change it to use a different team project as the chose team Team Project is grayed out. > Did this tool ever m ...Show All

  • Windows Forms Chat component

    I have made chat program,client and server using directplay and c#.Now I need to design own chat component. Any help or idea. please help!! Thanx need more info on what you are trying to do. What is direct play Whats your target client   i.e. do you have to support windows ce and other mobile devices, that might not support frames. In asp ...Show All

  • Windows Forms Combine Image with Checkbox

    I am in need of a custom control which has a checkbox and a image combined. I am currently using a image column and a checkbox column. This will also work if I can figure out how to remove the separator line between the two columns. Any help in this will be greatly appreciated. Bill I was able to get this to work. I added padding to a DataGridViewCheckBox for the icon. I then draw the icon at paint. Code is below. Public Class Form1 Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim DataGridView1 As N ...Show All

  • SQL Server LIKE % question

    Hello, I'm working on a project where I have a drop-down menu (collectionlist) of different words, which are part of a title which is located in my database. The bolded line is where I'm having my problems. I'm not sure how to place the LIKE statement. I will give you a quick example of what I would like to do: In the CollectionList, there is the word head. In my database, there is the title, head with earrings . I would like the filter function to find head with earrings when looking for the region, head . :S Thanks, I know this is a simple one, but I can't seem to find where I'm going wrong. Here's the code ...Show All

  • Windows Forms Window Forms questions (From within a from)

    I'm new to C# visual studio 2003 and wanted to create a window forms. I would like to creat a form within form. Lets call the main form form_a and the two other forms that are inside form_a called form_b and form_c. Where form_a is the main form that is not resizable and form_b is inside form_a and form_c also inside form_a. Form_b would be located on the left side of form_a from top to bottom with form_c below it. Form_b & form_c would only take up about 25% of form_a space. Wouild like to be able to resize form_b or form_c by clicking on the horizontal bar between these two forms then if scrolled up form_b w ...Show All

  • Windows Forms Setting DataGridViewRow.Visible = false at run time

    Hello. I'm tring to hide some roes at run time and get the following Exception: InvalidOperationException, Row associated with the currency manager's position cannot be made invisible. the code is simple (this extends DataGridView:  foreach (DataGridViewRow row in this.Rows)             {                      &nb ...Show All

  • Visual C# How to Raise an event using the EventInfo class object??

    Hi all, I am loading three Assemblies dynamically using Assembly .LoadFrom () e g -: Assembly *** = Assembly .LoadFrom(“Test.dll”); First assembly contains just an event inside the class. Eg-: public delegate int Maths ( int a, int b); public event Maths mathsEvent; Other two dlls contain classes with functions which will return int and will take two integer type parameters. After loading the assemblies dynamically am getting the event of the first assembly in EventInfo object using typeObject.GetEvent(“mathsEvent”); Eg -: Type [] type = ***.GetTypes(); EventInfo einfo type.GetEv ...Show All

  • Visual C++ '0' character oddity

    I'm working on a Poker game for a class project and I've come across an unexpected behavior of the '0' character. One I know it might be better to use '1' but, I haven't, up to this point anyway. I'm just wonder if anyone could explain to me why this code is actually working. It confounds me. Is it a bug I'm trying to sort a hand of Card objects, implemented as such: struct Hand { const static int COUNT = 5; Cards cards[COUNT]; ... }; I know I need to overload the < operator. Here's class Cards: struct Cards { char suit, value; void setSuit(char suit) { this->suit = suit; } void setValue(char value) { this-> ...Show All

  • Windows Forms Adding Fields

    As a relative newcomer to the world of .Net I am looking at the TaskVision source. I am keen to understand how to add further fields easily to the project  Any ideas or top tips. Many thanks I checked the DatasetTasks.vb anf the field TaskRTF has been added. Any other suggestions thanks ...Show All

  • Visual C# Creating an Excel file from a DataSet (no physical database)

    Hello everyone, I'm currently working on a project (this is my first real program in C#) and I'm a little stuck on this part of it.  To keep it short, the program accepts input from the user (obviously) and that information is put into a dataset in memory.  The user can then save the information to an XML file.  This XML file serves 2 purposes (to save the information and to retrieve the information).  The XML file can be sent out my test web server where I'll have a small asp.net page that can display the contents of the file, or you can use the program to open the XML file back into a dataset.  Here's the proble.&n ...Show All

©2008 Software Development Network