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

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

roshdsa

Member List

Oyster Poh
marcexx66
n9xbox
stxrxgl
wavuti
DCStudios
gamer36
Chris French
seanu
jukes23
kulashaker30
Jim Schultz
mr pk
Vishantha
MikeL.2k
MKU
Simon Jones - MSDL
Mr Dave
Rob_Jeffrey
BradA-MSFT
Only Title

roshdsa's Q&A profile

  • Software Development for Windows Vista Need more information on exception occurred while loading a workflow into a designer

    I've got a couple of custom activities and everything worked like a charm for a week. But right now when I'm loading a workflow in VS2005 designer, I've got an error message saying "Error loading workflow" "An error occurred while loading the workflow. Please correct the following error and try reloading the document to view the workflow." "The type initializer for ***here_is_the_name_of_my_custom_activity*** threw an exception." 1. How I can get the exception type, message and stack trace 2. I've wrapped all methods into try { ... } catch {} blocks and put all exception into a file. It didn't ...Show All

  • Visual Studio Team System .trx insert to DB, Distributed web testing across networks?

    Hi All, I'm trying to accomplish having agents across multiple networks without a VPN.  Right now I'm using windows scheduler to launch the mstests on the agents, and then the agents push the .trx file back to the test controller.  Is there a better way of going about this   From my understanding, all the agents and the test controller have to be on the same network . . . can someone verify that for me If it is the case, is there a tool which will convert that TRX to the default LoadTest DB   I'm using the Team Suite trial version . . . no foundation server though.  I'm trying to put the information from the ...Show All

  • .NET Development Can't drag from Server Explorer to Web Service Designer

    So the Distributed Application Walkthrough documentation needs to be rewritten. We believe this issue has been addressed.  Please post again if you believe this is not the case. Thanks! Daniel Roth ...Show All

  • Visual C++ Singular preprocessor definition needed

    This is my first post, I hope to be clear enough (sorry for my eglish) and I hope to be lucky and find the answer to a very big problem. I have a VC++ project and I need to create, during the compilation, a define that has the same name of the file that I am currently compiling. For example, if when I am compiling a file called Main.c I need to create runtime a define #define main 1 I do this by specifying the in Preprocessor Definitions section $(InputName)=1 The problem is that the command above create a define #define Main 1 instead I need the name of the file in lower case . I thought in the beginning to create a custom task in M ...Show All

  • Windows Forms Moving controls doesn't work after migrating to VS2005

    Hello, I am experiencing strange problem with move controls in VS 2005 Designer. I have a 2003 project which uses .NET 1.1 designer functionality: DocumentDesigner derived form designer, ControlDesigner derived control designers and custom implemented services. The solution worked perfectly when compiled in VS 2003. As I converted it to VS 2005 I had no problems compiling, and dialog editor works in most parts (including some more esoteric features, such as custom drawn connectors between controls on a surface). However, a couple of standard features don’t function anymore, most notably drag and drop moving of controls ...Show All

  • Smart Device Development Performance of Platform invoke

    Hi I have a general question regarding p/invoke.....When i try to invoke an unmanaged function from a managed code , how much of a performance degradation (if any ) does it make Thanks Somesh That would be in range from nothing to significant depending on platform, P/Invoke complexity and time spent in native code. The only way to know for sure is to run some benchmarks relevant for you. For generic information please see this: http://blogs.msdn.com/mikezintel/archive/2005/03/30/403941.aspx ...Show All

  • Windows Forms How can I persuade my company to use Windows Forms?

    I have a meeting tomorrow and would like to persuade our company to start using Windows Forms.  Currently we program mainly in C, a little C++ and use the Win32 API to produce dialogs.  The bulk of our business code is legacy C.  We use our own screen editor (not Visual Studio) and can only use basic controls like edit units, button ...Show All

  • Visual Basic Tabbed Browsing - favicon's, link contextmenu's, copy & paste

    Hi everybody, Question #1: I have struck another problem in my tabbed browsing adventures and now need to develop a way to get the icon that appears in IE (siteroot/favicon.ico) and add it to an image list. I looked in the webbrowser namespace but could only find WebBrowser1.Document.Images(index). Would the favicon be loocated there or would i need to download the favicon from the website first Question #2: When you right click in IE the contextmenu is different depending where you click. I have a contextmenu ready but i dont know how to make it appear ONLY when links a right clicked or text is selected as i need to ma ...Show All

  • Windows Forms DataGridView Combobox Cloumn

    Hi, I have a recipe form that shows the recipe ingrediants in a linked Data Grid View. I have changed the ingriidient field to a Combobox column. This works fine until I try and add a new line and as soon as try to endter a new ingrediant form the combobox in a new row I get a message saying ' there is no source code available& ...Show All

  • Smart Device Development auto-ftp ...

    I'm working on an app based off of the CPP CE CameraCapture app, and I'd like to regularly FTP the captured media to a web server. I wrote the FTP library in C# (back when I was hoping to do the whole job in C#, before realizing how little DirectShow is exposed to managed code) and honestly currently lack the skills to crank it out in CPP. I'm wondering what is the method to carry out the process, end to end. The platform is currently a Treo700w - a WM5.0 Smartphone -- and will eventually be a Cingular 2125 -- also a WM5.0 Smartphone. Can I crank up my C# FTP app, have it poll the capture directory for new material every so often, and lau ...Show All

  • Visual C# How can I use the delegate to update the user interface from a thread?

    hi:) I make a thread to do some work, here I want to see how the thread is going on. How can I use the thread to update the label text(used to display the message from the thread). I am a newer in c# , any advance will be helpfull! thanks in advace. coz you are working on another thread you cannot acess directly the label.. if the label wasnt created by that thared.. and howd you guess you need a delegate , and a methofd BeginInvoke delegate void MyDelegate(string s); // or some other paramters private void AMethodInYourThread(//... some paramters) { MyDelegate call=new MyDelegate(DoWork); // the begin ...Show All

  • Visual Studio Team System problem in migrating the code

    We are facing problem in migrating the code. The error we are getting is: “Initializing... TF60099: Given folder mappings do not match with last migrated mappings. Following was the original mapping please use this only for incremental migration.\n<From>$/MODULES/Reserves/Source</From><To>$/Destination.Folder/Modules/Source</To>” The XML file used during the migration is as below. < xml version="1.0" encoding="utf-8" > - < SourceControlConverter > - < ConverterSpecificSetting > - < Source name =&quo ...Show All

  • Visual Basic Passing Class Value

    Hi All, I have create a class called "ShowData", and this class have a windows form attached called "frmData". FrmData has a listview listing all the data. And I create another windows form call "frmDisplayQueue" How do I passing the value from that frmData's Listview back to frmDisplayQueue Try sending the project to christian / dot / graus / at / gmail / dot / com. ( remove the slashes ).  I'll have a quick look for you.  ...Show All

  • Microsoft ISV Community Center Forums Multithreading, Callback & VBA in PowerPoint 2003

    Hi, I'm currently trying to get to work a VBA application which uses an external DLL (which I program parallely). The DLL starts a separate worker thread which calls a previously registered VBA callback function. This works perfectly (e.g. I can do a MsgBox "I was called with argument " + str(arg)) but if I try to change a slide in my slide show, PowerPoint says that "Hyperlink ^0" doesn't exist and crashes. At the end of this post I put a little bit of code in order to explain what I'm trying to do. If I call the VBA procedure *not* inside the thread (e.g. in a method of MyObject), it works, so I think it has somethin ...Show All

  • Visual Studio Team System How do I download Team Foundation Server (Full) ???

    I have an MSDN subscription (Visual Studio 2005 Team Edition for Software Architects). When I go to subscriber downloads, under "Team Foundation Server", there are two products listed: Visual Studio 2005 Team Foundation Server Trial Edition (English) Visual Studio 2005 Team Foundation Server Workgroup Edition (English) How do I get the full version of TFS Thanks After spending many days trying to figure out this, I've finally understood... First of all, let's get one thing straight. Regardless of you MSDN subscription level and/or your Certified Partner level. The Micros ...Show All

©2008 Software Development Network