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

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

MartinaM

Member List

CrazyAboutWPF
gendis
Noah
Greg Shelton
mrsamer
chchchch
FST
Sandy Gallagher
serras
Irina777
Gianluca Hotz
Sundaraguru
percramer
Webbtrad
Webdiyer
German Horacio
Mike Chen
TheDOG
Kimberley Scott
bytebugs
Only Title

MartinaM's Q&A profile

  • Visual Studio Where's the MSBuild Project Type?

    There's a Makefile project in the VC project system which is handy for integrating old (non-VC) stuff into Visual Studio.  I would like to the MSBuild equivalent.  That way, I could move the old stuff over the MSBuild files.  I would then expect the integration with VS to be at least as good as it is with makefiles (if not somewhat better - files in item groups would just show up in the project). Yep, that was the solution I was going to suggest We actually use such a task internally in the build process for parts of Visual Studio itself. It just hasn't been cleaned up for shipping. In genera ...Show All

  • .NET Development Serializing an Array

    Ive been trying for 3 hours to try and serialize an array.  First as an Arraylist, then converting the arraylist to a normal array then serializing.  Actually the serializing seems to look OK, all the data is in the file as it should be *i think*, but the deserializing is causing problems. ACProfileData is a class that contains properties, strings, ints, etc. xml = new XmlSerializer(typeof(ACProfileData[])); sw = new StreamWriter(AppSettings.appPath + "\\aircraft.xml"); ACProfileData[] array = (ACProfileData[])Aircraft.ToArray(typeof(ACProfileData)); xml.Serialize(sw, array); sw.Close(); xml = new XmlSerializer(typeof(ACProfile ...Show All

  • Visual Basic Form Clicks etc

    Hi Everyone, I forgot to ask this question... is there a way to set clickable areas of the form without a picturebox or button If there is, how do you find out or determine where on the screen the pointer is when you set up the points I tried to turn the GRID feature on but it never works. I'm using a map as a FORM background, but the pix boxes are slow to load when the form is called. Thanks again, Elgee El Gee wrote: I tried to turn the GRID feature on but it never works. Which grid feature are you referring to ...Show All

  • Visual Studio Express Editions how do you find the friendly name of an application???

    Hey guys, all new to this VB stuff and cant seem to find this anywhere else... I need to find a way to shut down my applications within a time limit... i got the timer and the time stuff to work, and i looked at all the other ppl tellin about how to shutdown an application, now my only problem is that when i create that code snippet for closing the application... For Each proc As Process In Process.GetProcessesByName( "Counter-Strike Source" ) Application.Exit() then it only comes to the first line, checks the name, and then stops... doesnt actually quit counter strike, lol... i play too much n cant stop, this is my way of sto ...Show All

  • .NET Development Compiling for CLR1.1 in VS2005

    Hi guys, First off apologies if this is the wrong group - I've spent some time searching both with google and MSDN for a solution to my problem, but have had no joy, and this group seems the most appropriate. I'm working on a Visual Studio AddIn.  I'm moving up from VS2003 to suport VS2005, and as such I'm now building from within the VS2005 IDE.  After a reasonable amount of work I now have the AddIn working in VS2005.  However, it no longer loads into previous versions of Visual Studio; and as far as I can tell this is due to VS2003 not being able to host CLR2 addins (the error I get is ' First chance exception 0xE0434F4D (U ...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

  • Smart Device Development Invalidate() - NotSupportedException

    using Visual Studio 2005 beta 2 / Compact Framework 2.0 I simply call Invalidate from a method within my Form and i get this -> "An unhandled exception of type 'System.NotSupportedException' occurred in System.Drawing.dll Additional information: An error message cannot be displayed because an optional resource assembly containing it cannot be found" Any idea Hi Adiraz, Note that SerialPort events are handled by a ThreadPool thread so if you need to update any properties for a GUI control, you would need to use Control.Invoke() instead of setting them directly. Cheers, Anthony ...Show All

  • Visual Studio Express Editions How to use 101 samples

    I downloaded 101 samples of visual studio 2005, but there is no project or solution for me to open by visual studio 2005, who knows how to use the 101 samples. thanks. You have posted this question in C# General also, i have replied there. Find this thread here: How to use 101 samples of Visual Studio 2005 . I will close this one. ...Show All

  • Visual C# Best Practices

    Hello, Can anyone recommend any sites that contain documentation on coding layout best practices. I'm specifically looking for OOP best practices and program flow information. Regards http://www.martinfowler.com http://www.dofactory.com http://www.patternshare.org http://msdn.microsoft.com/practices ...Show All

  • Visual C# using JH.CommBase;using Microsoft.Win32;?

    Who can tell me the meaning of the following two statements The project created by C# was a GUI application . using JH.CommBase; // for COMM port access What is JH.CommBase Is it provided by the visual studio itself Where can I find it using Microsoft.Win32; // for registry I have the same question with this statament as the previous one... Thanks a lot! Well, I've found the information the second statement: The .NET Framework class library is a library of classes, interfaces, and value types that are included in the Microsoft .NET Framework SDK. This library provides access to system functionality ...Show All

  • .NET Development Reduce the size of my soap messages.

    I have a soap tcp connection using WSE 3.0. I am not running through IIS. Here is the code for my server side: Microsoft.Web.Services3.Messaging. SoapReceivers .Add( new Microsoft.Web.Services3.Addressing. EndpointReference ( new System. Uri ( "soap.tcp://localhost:6565/cns" )), MyService); Here is the code for my client side: TestWS s = new TestWS (); s.GetSomeLunchCompleted += new GetSomeLunchCompletedEventHandler (s_GetSomeLunchCompleted); s.GetSomeLunchAsync(); When I trace the request with TcpTrace it responds back saying that it was sent 1656 bytes with the following packet: - ...Show All

  • Visual Studio 2008 (Pre-release) Stopping a TextBox resizing to infinity and beyond

    I have a very simple question. I want to use a DataTemplate to specify how to display an item in a ListBox. The item has two fields, one a Boolean, one a string of Text. I naively thought that this would be simple XAML. Maybe <DataTemplate ...>   <Grid>       <Grid.ColumnDefinitions>         <ColumnDefinition Width="Auto" />         <ColumnDefinition />       </Grid.ColumnDefinitions>       <!-- CheckBox in (0,0), TextBox in (0,1) --> &nb ...Show All

  • Visual Basic Publish two projects referenced together

    Hello, I have VB.Net 2005 Pro. I built One solution contains two projects Pro1 and Pro2. Pro2 Is a reference in Pro1, Now If I wanna publish Pro2 there is no problem, but If I wanna publish Pro1 the problem comes in this message Could not find the file "Microsoft.Windows.CommonLanguageRunTime, Version = 2.0.50727.0" How Can I publish My Sol !! you can create a setup project http://msdn.microsoft.com/library/default.asp url=/library/en-us/vsintro7/html/vbtskcreatinginstallerforyourapplication.asp ...Show All

  • Visual Studio Error 25015 while installing .NET Framework 2.0

    Hi, I have a problem getting NetFX 2.0 installed. While installing the framework with Elevated Rights I get : Error 25015: Failed to install assembly 'C:\WINNT\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.Vsa.dll' because of a system eror: Access is denied. If I give the user admin rights the installation works fine. Is there a way to get around the admin rights, I really dont want to get it to all 2000 users on our site :-)   /// Johan You need to be an admin to install the framework. If you're deploying the framework via SMS or active directory, follow the ste ...Show All

  • Windows Forms How form resizing works?

    I have been searching a document about form resizing and anchoring. I want to learn logic for them and what is happening internally. Do you have any document suggestion I searched in a lot of web sites. but I couldn't find my answer.. with best regards... As far as resizing goes, I don't think there is much internally going on. Of course when form is created, it is given a height and width. When you resize, all it is doing is automatically changing the height and width for you, so you dont have to go in and manually enter in the new values. As far as anchoring goes, I'm sure it's just doing something alon ...Show All

©2008 Software Development Network