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

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

CALIFF

Member List

David Lundell
m4yster
Jesse Albert
OlgaD
Burillo
Mark Hagan
Envitro
Heffo
phantastikfan
gtarnold
HansVonkeman
Reinsouled
cats_five
Vinay Mandy
venkydshow
Dorkboy
Lajos Malozsak
Sweed
gardenspider
Janet Robinson
Only Title

CALIFF's Q&A profile

  • .NET Development .NET version 1.1 and 2.0 co-exist?

    I recently installed .NET Framework 2.0 without removing version 1.1. I initially thought that like Service Packs, the newer version will overide the older version. Now in the Add and Remove applet, both version 1,1 and 2.0 are there. What is going on Should I remove 1.1 now that 2.0 is there You don't need to have 2002 and 2003 installed. .NET 1.1 applications will automatically run on .NET 1.0 Framework without any troubles (as long as you don't use .NET 1.1 only features). There is currently a project under development at Microsoft codenamed MSBee. This project will enable Visual Studio 2005 to build .N ...Show All

  • Smart Device Development WaitCursor not being displayed

    We recently ported a mobile application to .NET Compact Framework 2.0, and we're seeing a case where we set a WaitCursor, but it is not getting displayed. It was being displayed with .NET CF 1.0. The WaitCursor is set from the event handler for a button click, which starts a relatively long "Save" operation. The call stack at the point where we set the WaitCursor is shown below. Notable is the fact that once condensed, the call stack looks like: > Event handler for Dialog2 <-- WaitCursor set here, but not shown > ShowDialog for Dialog2 > Event handler for Dialog1 > ShowDialog for Dialog1 Does anyone kno ...Show All

  • Visual Studio Tools for Office .net COM Add-in for Excel - cannot find Extensibility Projects

    Hi I have installed Visual Studio Tools for Microsoft Office after installing vb.net and Microsoft Office 2003 respectively. I cannot find the Extensibility Projects folderin the Other Projects folder. Please would someone help. Thanks Murray  Hi Misha Thanks for the last response. The thing is that I want to sell my Add-In to users of Excel 2000 and onward. I would also like to try and target Excel 97 users if possible. So how do I create and Add-In to manipulate my VBA code that can be used in Excel 2000 and Excel 2003 (and at a stretch in Excel 97). It seems that I massive part of my market lies ...Show All

  • Visual Basic Cannot compare Location Property

    Ok to start what I'm trying to do is compare a picture box location to a point on the form were the picture box is located. The statement that I am writing and recieving an error with is this. If picBox11.Location = (12,12) Then I have also considered trying to compare that location on the form, like this. If picBox11.Location = me.Location(12,12) Then I recieve an error on the intellisence as soon as the code is entered. I do not want to make a seperate variable for each point and I believe that I am just missing some syntax in order to make this comparison. If you know the answer to my quesiton please help me. Thanks ...Show All

  • Visual C# Dynamic type cast

    Hi Can any one please tell me how can we do dynamic type cast in c# I have a two objects , A and B. But i dont know the data type of both at compile time. I want to type cast A to type of B , so that i can compare thier values. Thanks in Advance I am not sure if the is and as keywords are what you are looking for if (instanceA is ClassB) { ClassB instanceB = instanceA as ClassB; } ...Show All

  • Windows Forms Where to find MenuStrip programming elements(messages-functions-Notifications-Macros)

    I try to design automated gui tester application I find help for all old controls in http://msdn.microsoft.com/library/default.asp url=/library/en-us/shellcc/platform/commctls/indivcontrol.asp but new controls in WinForms 2 such as menustrip I did not find any help for them so please help me or tell me how to convert window pointer to its handle this may help I already get handle to the menu by using GetTopWindow function in user32 but that also is a temporary solution because if I want to use load test there will be handreds of windows and you are not sure which one is the top so please if some body ...Show All

  • Visual C# Why is Generic.List<T> not ICloneable?

    I'm definitely missing here something. What was the reason not to implement ICloneable on the generic list Is it supposed to use ToArray() if I need a List with the same elements (value or reference types) Ok. It was stated that I should use copy constructors (as far as I understand - constructor with ICollection in my case). http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=5836&SiteID=1 Are there any other "bad" features of ICloneable except type unsafety (returns an object that must be downcasted). Can anybody, please, provide some material concerning this ...Show All

  • Visual Studio Automatically Generating a Crystal Report to PDF

    Hi Guys I need to think up a way to automatically generate a few reports. It is sales figures that i get from a production system. I got the reports, I just need a way for it to be automatically generated and emailed off to a certain email address. So far I had no Luck. Just cant think of a way to do this. All I need is a way to do this whole process without user intervention, hence automatic. I got reports that is needed so its just a matter of getting a way for the reports to run automatically. I got the code that can export it to pdf and probably can get it to be emailed. just need something that will do the automatic ge ...Show All

  • Windows Forms Adding an eventhandler to a control created at runtime

    I need some help. I'm creating an application where I add control on runtime to a form. This works fine and I can set all the properties I want. But my problem is how to add a procedure to those controls. I have several controls using the same procedure for handling some specific events (e.g. MouseUp, MouseDown). Can somebody provide a sample or some hints how to solve this Hi, if you want to add a new event handler to your component do something like this: myControl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.myControl_MouseDown); and then define your event handler: private void myC ...Show All

  • Microsoft ISV Community Center Forums Serial Port Communication Using MS Access VBA

    Need help using MSComm.ocx in MS Access 2000. I have successfully registered the file and have gotten passed licensing issue. However, I am not sure how to use the control to read the data. My code reads: mscomm1.comport = 2 mscomm1.settings = "9600,N,8,1" mscomm1.portopen = true mscomm1.inputlen = 0 buffer = buffer & mscomm1.input (this line of code returns nothing) Any help is greatly appreciated. Per our support engineer: Let’s talk about following issue regarding MSCOMM control. Here’re some resources for our buddy. Hopefully, they can help on his question. ...Show All

  • Visual Studio Team System Lock level of file superceded by check out

    When check out operation is performed on file, the lock set will be that of the check out option specified. It may lead to some not entirely obvious consequences. Obvious example 1) No lock on file prior to check out 2) After check out is performed with lock option other than "None"("Check-out" or "Check-in" lock), the file is editable and has changes "Lock,Edit" associated with it (in "View Pending Changes" window) Not so obvious example 1) Lock the file prior to check out ("Check-out" or "Check-in" lock) 2) After check out is performed with "None" lock op ...Show All

  • Visual Studio 2008 (Pre-release) milcore.dll missing from my system?

    Hi guys, I'm finally getting around to playing with WPF. I created the simplest possible app that is just supposed to show a window and uses the simplest possible msbuild file. It compiles and builds 100% fine. But when I run it, I end up with a DLLNotFoundException triggered by a missing milcore.dll file. My dev box has the following software on it, WinFX Runtime Componenets (Sept CTP) WinFX SDK (Sept CTP) C# Express Beta 2 (Although I'm currently just building everything from the cmd line) I've searched my machine for milcore.dll and I can't find it. Searching the web for a solution has also turned up a blank. Any ideas Thanks. ...Show All

  • Windows Forms How do you get the row number from datagridview

    I added a datagridview to a form programmatically. One of the columns is a combobox and one of the columns (caseID) is not visible. All columns execpt for the combo box are text boxes. When I add a new row I need to know the number of that row so that I can set the caseID cell to its new value.  When I used a datagrid I was able to get the number with this syntax:       datagridx.currentRowIndex What is the correct syntax to get a  datagridview row number       datagridviewx.currentrow.index doesn't work. Thanks. Okay thanks ...Show All

  • Visual C++ cli::array memory structure

    As http://msdn.microsoft.com/library/default.asp url=/library/en-us/dv_vstechart/html/datastructures_guide.asp says we have: "The contents of an array are stored in contiguous memory" Does it mean that if I declare byte [] buffer // in c# or I declare array < unsigned char >^ aBuffer = gcnew array < unsigned char >(size); //in C++/CLI both have same memory layout and structure Provided C++ doesn't optimise it, the line array < unsigned char > ^aBuffer = gcnew array < unsigned char >(size); // in C++/cli will compile to the same IL as: ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Overlay Graphics on Direct3D

    I have a Direct3D-based game and I would like to overlay an information box ontop of the game. The only sample code I found was using the depreciated DirectDraw and I was wondering if there was another way to do it. An application that has accomplished what I am trying to do is a program called Xfire and a screenshot of the program is here: http://media.xfire.com/xfire/xf/themes/XFire3/images/tour/tour_image_4.jpg As you can see they have overlayed a box ontop of the game, which is exactly what I want to do, just not using DirectDraw since it is depreciated. ...Show All

©2008 Software Development Network