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

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

ivanbydg

Member List

Cyril Ike Payumo
Aravind Rajagopal
Sam_L
Tom Nguyen-Marsh MSFT
MauricioUY
LHERMITTE
Ben Walton
Gad D Lord
mrwillyfog
Fuzzb
sassabrassa
Xne0
Steve Schofield
Lana567890
Charles Salfity
C McGlothen
DarrelC
Deasun
Bob Bojanic - MSFT
Gustavo Carrazoni
Only Title

ivanbydg's Q&A profile

  • Windows Forms MenuItems

    Hey, Is there a code like the one below that dose the same thing but for a MenuStrip item : ToolStrip3.Items.Add(newbutton) Thanks :) yes...identical: MenuStrip3 . Items . Add ( "TEST" ) or MenuStrip3 . . items . Add ( Text , image , Eventhandler ) ...Show All

  • .NET Development Dynamic AppDomains

    I have an application that uses the FileSystemWatcher to monitor for the "drop" of certain files in a folder.  Custom actions are then executed based on the file name, size, etc. This application can listen for an unlimited number of files and therefore, runs an unlimitede number of threads that implement the FileSystemWatcher. However, if a critical error occurs one of these threads, the whole app crashes. Is there a way I can create an AppDomain (therefore, another process) for each file listener   I guess I am trying to simulate what IIS6 does when you add an applications to different ApplicationPools so that the crash of one wi ...Show All

  • Visual Studio Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid

    I have installed a RC version of VS Team Suite along with full MSDN installation. After completing installation, I'v got " Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid " error when I have tried to access it by doing "Start" -> "All Programs" -> "Microsoft Developer Network" -> "MSDN Library for Visual Studio 2005" When I accessed it from VS 2005, it only have SQL help available. I have tried to reinstall it several time but no luck. Any help would be appreciated. Eric I have the same results as Pieter, n ...Show All

  • Visual Studio ANN:VS SDK 2005 Feb CTP for v2

    Community, the Feb CTP bits are live at https://www.vsipmembers.com/   this release contains DSL and an RC of VSTA. The TFS bits are still the B3 bits from the RTM SDK. New samples since the RTM SDK include SingleFileGenerator, CodeSweep, SingleViewEditor, DSL Samples, VSTA Samples, SCC Samples, and the IronPython end-end integration sample. Other important improvements include doc updates, VSL improvements, the prototype VSTC tool to replace the current commandline CTC tool, and more. Please download and provide us feedback on this thread. thanks, Phil Taylor VS SDK PM PS. I edited the admin part out of the ...Show All

  • Windows Forms Chart/graph controls on form

    Hi, Can anyone help me with my problem. I want to place some graphs/chart controls on my form. I want to place a treeview control on the left of my form as a navigation control and on the right I want to place some graph/chart controls that will show respective figures/position. In the controls list, I can't find any genuine chart/graph control. Have they been moved to some other namespace different from 'System.Windows.Forms'. I know this is not an exact answer to your question, but maybe this link helps http://www.codeproject.com/cs/miscctrl/graphcontrol.asp Marinus ...Show All

  • Windows Forms Almost the populating datagrid (not using dataset)

    I was looking for how to populate a datagrid against Sql Server and for my surprise there are tons of samples using datasets. I thought datasets were created basically for web applications, am I right I've almost populated that PROGRAMATICALLY, I'm using an ArrayList collection. dg.DataSource = oArrayList; This generates only the rows, what else do I have to write so that columns and records from db appear Ok Daniel thanks a lot, I'll try that! Best regards, Ivan ...Show All

  • Visual Studio Change a connector's from and to endpoints at runtime

    Is it possible to change a connector's from and to end points at runtime I've tried creating a partial class for my connector and setting the FromEndPoint and ToEndPoint properties during the OnShapeInserted event however after committing the transaction they revert back to thier original settings. I notice there are Move and MoveByRepositioning methods but I don't know what parameters to give them. Hi Russell, Yes, it's possible to set the From/ToEndPoints. You were on the right track by setting the FromEndPoint and ToEndPoint properties. However, end points also have a fixed flag. By default, the Fixed ...Show All

  • Smart Device Development Windows Mobile 5.0 vs Windows CE 5.0 - Same thing?

    Are the Windows Mobile 5.0 and the Windows CE 5.0 the same thing I am trying to buy a phone that I can make some .Net mobile programs for and I am looking at the cingular 2125 ( <a href="http://www.microsoft.com/windowsmobile/devices/devicedisplay.aspx module=deviceDisplay;Smartphone;americas;233">Here is a link to the info about it ) but I don't know if those two things are the same so I don't know if this phone will work. Can somebody help me out Thanks! It is my understanding that the phone edition is different from the PDA edition of Windows Mobile. In particular the new office compatibility in the PDA version is no ...Show All

  • .NET Development Serialization of array of objects, containing array of another objects....

    Hi all, This is my first post here , hope you know answer to this. I have a situation where webservice is returning array of object A which contains array of object B which internally contains array of object C. class A { [XmlElement] // this was added on later on and works fine B [ ] B_array } class B { //[XmlElement] // here does not work as in Class A above C[ ] C_array } class C { int i, string s } All classes and variables within classes are public. Webservice is returning array of object A. When i run this through VS i can see webservice and once clicked i can see soap request and response of that service, earlier i f ...Show All

  • Visual Studio How do you include a folder that has been excluded from a project?

    I have a couple wizards that create classes in a specific folder. For example the Forms folder. I've created an action called EnsureProjectFolderExistsAction that will return the folder's ProjectItem if it already exists and create the folder using ProjectItems.AddFolder if it doesn't exist. The problem comes when the folder already existed in the project and was excluded from the project. When I call ProjectItmes.AddFolder, it throws an exception because the folder already exists in the file system. I saw a post from a couple years ago that suggested that you use Visual Studio commands to include the folder back into the project. This seems ...Show All

  • SQL Server What order are datasets executed?

    I'm running a report that uses multiple datasets. One of which is basically a script written in SQL. I would like this dataset, let's call it code, to execute before the other ones. How can I ensure that this happens Does it have anything to do with the order that I created the datasets in the report Or the order they are used in my template If i have a hidden table as the first item of the report that uses the code dataset as its dataset will this do what I want Is there a variable that I can change somewhere Please let me know. Thanks the flag is called "Use single transaction" and its in th ...Show All

  • Visual Studio Tools for Office Communicating with Outlook like ActiveSync

    My goal is to create a Windows service that can communicate with Outlook to synchronize .pst files. The main difficulty is the dreaded (but necessary) Outlook object model guard. It's my understanding that the best way to avoid the ensuing dialog box (when implementing restricted properties or methods) is to communicate with an Outlook add-in. To do this Outlook would have to be started programatically with no UI and the service would make calls to the add-in. I'm not sure if I'm on the right track. Any general info on the architecture required to make this happen or specific info on how to implement this would be greatly appreciated. ...Show All

  • Visual C# Dynamic assembly loading with static functions

    Hello, I have a program which is dynamically loading in several assemblies. So what I am doing is creating instances of the assemblies just to extract some data (constants). obj = Activator .CreateInstance(typeTemp); //Create the instance then typecast it to access some method   But what I want to do is to access a static function instead of having to create an instance of the class and calling the method. Is there a way to dynamically invoke a static method with no instance of the type Thanks, Mish Sure, you just need a reference to the assembly (type System.Reflection.Assembly).  On the assembly reference ...Show All

  • Visual Studio Express Editions Visual C++ Locks up the computer...

    Shortly after I start coding in VC++ my entire computer locks up and I have to restart it.  This has happened every time I have tried to use the program.  I am really disappointed because VC++ 6.0 isn't supported anymore, so this is all I have to use unless I want to spend lots of money...  I like Microsoft's products a lot more than compilers like dev-cpp and stuff, but this really sucks... So anyway - does anybody know why this problem happens, or does anybody have the same problem I looked at the system requirements, and I have well over what is required.  However, I am running an AM ...Show All

  • Visual Studio Express Editions VWD Couldn't be extracted

    Hi, I receive an error during extraction of the vwd.img file, it asks me to retry, ignore or quit. I try retry but same prompt re-appears, when I click ignore, files are extracted but installation encounters problems. Please let me know how to fix the issue. Thanks Zubair Yes, the problem was with the download size of the file, re-download solved the problem. Thanks Zubair ...Show All

©2008 Software Development Network