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

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

ChrisKoenig

Member List

ServiceDVD.it
R_S_Chandrashekar
aish
Binita
Alex
DTSlurve
Jan Buskens
Rei Miyasaka
BAZMIC
dpollo
FedericoAX
Treval_Lightner
gamehack
Arun-MS
Robert Bruckner
nickicha
Randaldtb
Anat Oren
Jonathan Hardwick - MSFT
Gidmeister
Only Title

ChrisKoenig's Q&A profile

  • Visual Studio Express Editions Register for multiple users

    Hi I downloaded and installed VC++ EE to my XP Pro SP2 PC. I did this whilst logged on with Admin rights. I registered and saved the key that I received in a .txt file. I use the PC on a day-to-day basis whilst logged on with Limited rights and, when I tried to use VC++, it said that I needed to register. I used the same key that I'd used when I registered with Admin rights but it was rejected. I was under the impression that I could register the software several times, if necessary. How do I go about registering the software for use as a Limited user Do I have to get a further key from MS If I do and register with Lim ...Show All

  • Windows Forms Need some kind of modal dialog in a mdi child

    I'm developing a MDI application and I'm wondering if you could give me some ideas how to implement this demand: I want to display a form that is modal for one child window. The user has to able to switch to other mdi childs but is not allowed to work with the current child until he closes the modal form. Because modal dialogs are modal for the whole application I cannot use them. Do you have any suggestions Thanks a lot! usage:  new SubModal.Show(this) where 'this' is a Form should have read usage:  new SubModal(this).Show() where 'this' is a Form ...Show All

  • Visual Studio Tools for Office Mouse hover event over a range of cells in Excel using VSTO

    Hi I have placed a similar thread to this previously but have not had too much success. I thought I would put it up and maybe word it differently. Neither VBA nor VSTO provides a mouse over or hover event. I need to be able to capture this event in VSTO within the office application and determine when certain users are hovering over a cell with the mouse. I am also an accountant who has turned to the dark side of programming. So if you do have some code to support this, it would be greatly appreciated. Many thanks to all for reading this. Cheers Dave Edelman Hi Dave, If you want to do this, you'll need to d ...Show All

  • Smart Device Development Multiple Row, List View

    Can someone give me a hint or point me to an example of a C# multiple row list view Models include: 1. InBox list control 2. Calendar Agenda View of appointments Thanks in advance! Dave, Sorry I am a little confused. Do you mean multiple columns I've never seen a listbox without multiple rows :P ...Show All

  • Visual C# Serialization/Deserialization

    I'm having an issue with a Property deserilizing. From what I undersatnd you do not want to expose ArrayLists or you just can not expose them through the serilization. This is a wierd problem to me. //This works public class Person { Person[] employees; //private member [XmlElement(ElementName="employees")] public Person[] Employees { get { return employees; } set { employees = value; } } } //Now this doesn't work: public class Person { ArrayList employees; [XmlElement(ElementName="employees")] public Person[] Employees { get { return (Person[])employees.ToArray(typeof(Person)); //am ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Visual C++ .NET and DirectX, problems with DrawPrimitive

    Hi. I've made a good start with Visual C++ .net express and direct3D. I have created a device and know it works, can perform some operations, however when I try to draw a simple object, say a triangle list with drawprimitive() I get this error message: An unhandled exception of type 'System.InvalidOperationException' occurred in Microsoft.DirectX.dll Additional information: Operation is not valid due to the current state of the object. Here is my code, this program creates a form and DirectX device. If you comment out the drawprimtive line it works. I can change the color of the clean operation within the onpaint function and it will draw th ...Show All

  • Visual C++ How to do copying files?

    Hi, I am writing an MFC program that can copy files (let's say: *.chm) from one directory to another by using API. Any idea Thanks. vcboy Hello vcboy, You can check out Boost.filesystem library which provide many operations on files and directories. file:///D:/Downloaded/3D%20Programming%20Related/c++Libs/boost_1_33_1/libs/filesystem/doc/operations.htm#copy_file Good luck. ...Show All

  • Windows Forms C# and vb.net problem

    am doing a winform in c# and my friend id doing othere winform in vb.net (we r both using VS2003) is there a way so my form can come out in his for (when a user clickes a buttom in his form mine comes out)(i don't want his form to only excute i want him to be able to change my form apprence (my friend in vb.net)) is there a way u can u give me a site that shows that or show me here thanks If each prjoject is created in a DLL (New Project-->Windows Control Libary), and each of you we reference the other one dll on his project, you can use each other forms and controls as it was your own ...Show All

  • Software Development for Windows Vista windows workflow monitor slow to show results

    i'm running my workflowruntime in asp.net. the db is on a remote machine. when I fire an event that the workflow is waiting for it is persisting the activity event to the ActivityExecutionStatusEvent immediately.thats good. but the sample workflow monitor does not pick up on the changes for over 5 minutes despite setting the timer on it for 500ms.I have set the SqlTrackingService IsTransactional to false. what do i need to do to speed up the monitoring of this Is this still an issue Try with the latest RTM bits of WF. Also can it be possible that the Remote Db itself has some issues. Try it on a local machi ...Show All

  • Visual Studio Can't edit macros in Visual Studio 2005 standard edition

    I just installed visual studio standard edition and was trying to edit a macro from the samples. However when I select edit, I get the following error: "Interface not registered". What gives Is this feature not available in standard edition I got the same error from the beta version. I have Visual Studio 2005 Professional Edition and the Macros IDE used to work just fine. I've downloaded and installed the latest service pack and now when I select the Macros IDE option from the menu I get that error about an unregistered interface. I don't have the time to re-install my whole system. It is not admissible that ...Show All

  • Visual Studio 2008 (Pre-release) I love DLinq. Really need n-tier support though.

    In section 7.4 of the DLinq guide it mentions that that's something you guys are looking at. Do you guys have an idea if that functionality will get in there before the product is given the green light to go-live Since most apps these days are designed as SOA, there will need to be a distributed notification mechanism. Thanks CZ The type of n-tier support we have for DLinq is simply an API that allows you to introduce objects to a new context after they have been round-tripped across the tiers. You still have to move the objects or data across the tiers yourself, and you have to figure out how to squirrel aw ...Show All

  • Smart Device Development Embedded VC++

    where can i get the tutorials for embedded vc++ ........ Here is the point where you can start with: http://msdn.microsoft.com/mobility/gettingstarted/evc/default.aspx If you have any special query, please let us know. ...Show All

  • SQL Server Remote Connection problem on MS SQL 2000

    Hello, First, I want to say I read all threads similar this thread and I couldn't solve problem. My firewall is always off when I tried to connect remotly to SQL Server. I opened 1433 port from my router's configuration page and forwarded it to 10.0.0.4:1433. When I started SQL Server service and checking "netstat" with "-na" paramters. It shows only one row as "TCP - 0.0.0.0:1433 to 0.0.0.0:0". What "0.0.0.0" means and why foreign addres port is "0". I guess, It should like to be "TCP - 10.0.0.4:1433 to OutsideIp:1433". I removed forwarding from my router and used Windows's Network Connection to forward ports. I opened ...Show All

  • Visual Studio Express Editions invalidcastexception derived treenode

    hi all! in my program i have a treeview formed by some classes derived from the treenode parent class...the scope of my program is to write an xml file by the structure of the treeview... i can save my project( and so write the xml file) and when i save a new project i can do a good cast...for example: org = (Organization) node; ->org is an instance of Organization(derived from treenode) node is an instance of TreeNode i can also open a file and then save...but here i found casting problems...i dont know why here i cant cast...i do exactly the same things!! please help me!!i dont know what to do!! thanks all bye ...Show All

  • Visual Basic trackbar and progress bar

    Hi, I'm new to VB, trying things out. Here's one that doesn't work : when I want to modify the progress of a while loop, it seems my trackbar does not have any influence. the goal (as stupid as it may seem) is to restart the loop before it's finished, at a certain point determined by the trackbar... what's wrong Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click maxvalue = textbox1.Text TrackBar1.Maximum = maxvalue TrackBar1.Minimum = 0 voortgang.Maximum = maxvalue TrackBar1.SmallChange = 1 i = TrackBar1.Value voortgang.Value = i While i < maxvalue TrackBar1.Refres ...Show All

©2008 Software Development Network