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

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

mark_05

Member List

Hf Kok
Nitin Patil
BasL
Mike Healy
Mr.Analogy
WorkerBee
camilero999
scepticus
ShinjisukeSono
AndrewMcK
erprashant
OmidQRose
Mostafa Hafez
rsteckhan
arthurmnev
ErikJakob
JuanBernabo
akois
CorkChop
StephenMas
Only Title

mark_05's Q&A profile

  • Visual C++ Memory leak in the STL list class

    I apologise if this has already been mentioned but I think I may have found a memory leak in the STL list class. To confirm it I have created a Win32 Console Application called testmemleak. It only has 1 source file, main.cpp, which contains the following: #include <list> #ifdef _DEBUG #define CRTDBG_MAP_ALLOC #define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> #endif void main() { std::list<int> mylist; #ifdef _DEBUG _CrtDumpMemoryLeaks(); #endif } After the program has finished execution a memory leak is detected and dumped: 'test ...Show All

  • Smart Device Development hide today icons....

    is there a way to hide all the today icons and then have a button in the tray that show them... what device are you working with, for starters on my Treo, shortcuts show up at the top of my start menu, on my 2125s, it shows up on the today screen ... you are talking about the quicklaunch bar (I think that's what it's called ) ...Show All

  • Smart Device Development Links to files in notifications

    Hi I've just got VS2005 Beta 2 and I really like it. I'm using Visual Basic.  I want to launch an application from a reminder - i mean i want to put a link into the reminder that launches a local application, or, even better, the link is a picture, which picture is on the Pocket PC.  As far as I can understand, reminders are HTML stuff, however, i can't get this thing work. I've tried: <a href="file://\Windows\addrbook.exe"> <a href=\Windows\addrbook.exe> <a href=file:///windows/addrbook.exe> Any many other things, but none of them works. What do I do wrong ... Thanks for the help, KTamas ...Show All

  • Visual Studio Express Editions Serial port data formats

    Well first off I'll admit to not even looking as yet, but thought I'd pick the mass here as the deadline is two months off yet.. The teem asked a question on Friday about comm ports and VB.net. We have machines that will only understand 7bit ascii.(Old stuff like the programmer) Anything else just won't do. With all the UTF8, unicode, etc. that WinXp uses. Are there any known problems/steps that need to be taken to ensure only 7bit ascii goes out the serial ports thank stubs ...Show All

  • Windows Forms stell having problem

    to use the toolbarstrip i need winfx sdk i found "Public November 2004 Avalon CTP Release.msi" but when i double click on it the exproler get stuck how can i install it and do i have to install the winfx sdk i have visual studio 2002 sp1 , winxp pro sp2 I'm assuming you're referring to the new ToolStrip control.  To use this, you'll need a version of Visual Studio 2005.  You can download Beta 2 from: http://lab.msdn.microsoft.com/vs2005/ - mike ...Show All

  • Visual Studio Custom editor, property grid commands

    Hi, I'm developing a custom editor and I need to have VS property browser showing my custom commands (verbs). I can do this in the standalone application by passing IMenuCommandService to property grid context (site), but I can't do this while developing VSIP package. (However I'm able to use property grid for selection and editing properties of the selected objects). Editor view is inherited from WindowPane class and I'm trying to use IMenuCommandService base class provides and it is not working. View uses service provider from editor factory (supplied by SetSite method) as its parent provider. I'm using VS2005B2. Any ideas Thank you ...Show All

  • Visual C# New code being ignored

    Hi there, I am newish to C# and am having an issue, I am making a code change in one project of a large solution in VS2005. When I attempt to debug the code, a dialog box comes up with the message that 'The source file was different from when the module was built'. I click yes to continue anyway, but the debugger appears to still see the older code. I turned off 'Require source files to exactly match the original' under Tools - Options - Debugger - General, but this just stopped the dialog from appearing. This project is referenced by other projects, with the 'Save local' property to true. They appear to be copying in the correct ve ...Show All

  • .NET Development The connection could not be made because the target machine actively refused it.

    Hi. I've developed an application for transfering files between a client a server. There is a remotable object in server hosted in IIS which has a method named "UploadFile". Client portion is a Windows Application project which gets a reference to the remotable object and calls "UploadFile" to send a file to the server. File is sent by being broken into many chunks sent sequentialy. I've a class named "FileData" which encapuslates a Stream object. So, to send a file to the server, I instantiate the Stream object using the path provided and use the FileData object to the server. I receive the following erro ...Show All

  • Visual C# How to write the code automaticly into the InitializeComponent?

    I make some component and controls in the my toolbox when I drag them to the form, i hope VS can write the code into the InitializeComponent automaticlly,just like I drag a VS button in the form. How to archieve this pls give me some idea Thanks VS sets the properties of you custom control as it does it with the built-in .net controls. They are added if the properties have a default value or if you change a property within the property window. Best wishes ...Show All

  • Visual Studio 2008 (Pre-release) How could I test a WCF service from browser

    It Is possible to test a WCF service from browser like in ASMX I did it in September CTP, but failed in November CTP. When I use svcutil.exe to generate a proxy, it throws a exception: D:\>svcutil http://172.21.25.14:8877/MathServices wsdl Microsoft (R) Service Model Metadata Tool [Microsoft .NET Framework, Version 2.0.50727.129] Microsoft Corporation.  All rights reserved. Error: Unable to obtain Metadata from the Uri provided Error:   WS-MetadataExchange Failed on URI:http://172.21.25.14:8877/MathServices wsdl     The message contains an invalid or expired security context token. Error:   ...Show All

  • Visual Studio Edit & Continue w/ remote debugging

    Can anyone tell me if e&c works with remote debugging Any other significant remote debugging enhancements in 2005 Yes, remote debugging works with e&c. Some of the other enhancements of remote debugging in VS 2005 are: - Significantly improved setup experience - Improved security - More intuitive user experience HabibH. ...Show All

  • Windows Forms CheckedListBox question

    Hi all, I have a CheckedListBox control on a form, it has been created in the designer, it works ok, in the sense that it gets populated thru databinding correctly. Now, I need to be able to add dynamically another CheckedListBox based on a selection in theis forst CheckedListBox. My first question is: how do I make sure the initial CheckedListBox is created without a default selection being already made It seems that this control already gets its first row selected by default; is there a way to prevent this thanks, kowalsky Hi, Without knowing more specifics about your solution, it mig ...Show All

  • Visual Studio Team System Unable to access Team Foundation Server after Domain Migration

    Hi, Initially, we were able to connect to the Team Foundation Server and access Work Items as well as the Source Code, as 'Contributors', but after we were migrated to a diffferent trusted Domain, we have got the following error, whenever trying to access the Foundation Server: "TF26000: Could not connect to the Team Foundation Server. Check that you have a network connection and that your Team Foundation server is available." Now, we can only access Work Items or the Source Code as 'Administrators'. Can anyone provide a solution Thanks in advance. Ravindra N. Hi Ravindra, ...Show All

  • Windows Forms does taskvision work on win pro 2k

    hi, I realise that it states that taskvision should only be run on winXp and win2k3,  But I'm trying it on win 2k pro. The msi installer successfully installs the app and the database onto sql2k, but I get the following error when I try to log in <error> the remote server is unreachable or the request has timed out. <error> I know that: 1) my&nb ...Show All

  • Visual Studio Express Editions Can´t register or create new User in Demo Project

    Hi! The application is running fine but I can’t create an admistrative user (or anything else). It always comes up with a red HTML-Dialog "Please enter a different password.". There must be some kind of error in here, because I can try whichever password I want, it won’t let me finish the registration. This happens in the basic application as well as in the ASP.NET Configuration > Security > Create User dialog. Any suggestions Bye, Brokit hi, I have the same problem and continue found a lot of other problems. Im from Brasil and i cant find the same valueable information in the msdn brasil. Thank yo ...Show All

©2008 Software Development Network