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

Software Development Network >> Zsolt Soczo's Q&A profile

Zsolt Soczo

Member List

minh bui
Giulio2000
LoreHistory
teapeng
Parakooper
sscc
tomjanssen
Lacan
RHogue
Carltegeder
JoGo
mhammingh
borislav_b
Cristian Lefter
kickf1ip
demmith
nicksmaddog
Ronald Cormier
Johnny Rush
nuxvirg
Only Title

Zsolt Soczo's Q&A profile

  • Windows Forms event handling

    hi guys , i hav a problem in event handling in c# . i have combobox1 which has the controls say 'button' and 'label' in it as items , and i have combobox2 which gives the properties of the respective controls selected in combobox1. say i want to fire an event in combobox 2 after we select 'button' in combobox1 , so its almost lke handling 2 events where the 2nd event is dependent on the 1st . so can any of u give me an idea as to how ca ...Show All

  • Visual Studio Express Editions Making DLLs with Visual C++ 2005 Express Edition

    Hello, I've been coding in C++ for long using other compilers. But I have recently installed Visual C++ 2005 Express Edition and I would like to know how to compile a DLL using multiple CPP and H files with this program. Hello Maikel H and welcome to Visual C++ 2005 Express. I assume you're already quite proficient with making DLLs, and just need to know what extra steps are required for VC++2005. Before con ...Show All

  • Microsoft ISV Community Center Forums Using Excel from Access

    Hi, I am hoping that someone can help me improve the way I am using Excel from Access. I am a poor simple Accountant, and my only training is reading the help filies, and the excellent posts to this forum. I have a number of Access databases which have code to write data into Excel spreadsheets for distribution. Currently, I use the example code from Office 97 which checks to see if Excel is running; if so the code prompts the user to close e ...Show All

  • Windows Forms GDI+ Error and (JIT) debugging message, help need

    Below is the error message, anyone here know what the problem cause this error how to fix it See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.OutOfMemoryException: Out of memory. at System.Drawing.Graphics.FromHdcInternal(IntPtr hdc) at System.Windows.Forms.MenuItem.WmDrawItem(Message& m) at System.Windows.Forms.Control.WmDrawItemM ...Show All

  • .NET Development c++/cli for anycpu

    I created a test program using c++/cli under safe mode (i.e., entirely managed code) with beta 2 (8.0.50110.28) using the flags cl /clr safe /Ox. The compiler is generating msil code, but it seems that it only runs in 32-bit mode - can't find a way to get an "anycpu" executable like C# allows. Is there a magic chant that I don't know about Or is this not available under C++/CLI karel I'm going to close this th ...Show All

  • Visual Studio Express Editions Feature request: "Save All As"

    Visual C# 2005 Express Edition Beta 2 A menu item "Save All As" is sorely missed, at least by me. Now, when I wish to change project names, I have to manually edit project files etc. Regards,   Guido Guido - Thanks for this suggestion.  If you enter this suggestion at http://lab.msdn.microsoft.com/productfeedback you'll be able to track whether and when we implement a feature like this.  ...Show All

  • Windows Forms Version independent settings?

    If I add a .settings file to my Visual Studio Windows Forms project, it works great. However, in my AssemblyInfo.cs file, if the AssemblyVersion is set to "1.0.0.*" (Visual Studio will automatically increment the last number), then every time I build & run my app, I lose any settings I've saved because the version has been incremented. It appears the settings file is not version independent. Is there a way around this problem AssemblyV ...Show All

  • Smart Device Development Mobile Web Forms controls and many more controls are disable...............

    Hi,      I have just started PDA application development using Asp .net 2.0.      When i am browsing "Mobile Web Forms" controls and many other controls , it is disable.      so, Kindly any one help me to get off from this problem Regards,     Keyur Mistry   Glad you got it solved. Please note (for any future queries) that this forum is for Smart Dev ...Show All

  • Visual Studio How can I set or simulate a RowSpan for my images in a table?

    I want to span my image across multiple rows in a table. Cannot get it to work, and cannot find any properties to accomplish this. Any suggestions Thanks in advance Here is a suggestion: for the overall layout, you could use a list and put a table inside to control the text layout. The image would go directly into the list. In order to center the image within a certain vertical space, you could apply the approach discussed in t ...Show All

  • Visual Studio Difficulty in Installing VS .Net, Bundled all Cds into a single folder

    Hi      As per the document (ReadMe) in the installation cds of my VS .Net, I copied all the contents of the Cds into a single folder (overwritten  files if asked). When i started installation from the hard disk, it was successfull. But when I made the folder into a single Dvd... and started the installation, it regularly asks for the next cds... i changed the baseline in the setup.ini as ../WCU ... as per the r ...Show All

  • .NET Development C# equiv of isdate?

    Hi, How do i check if a string contains a valid date Ex, i have a string ="jan 6 15:15", I want to set the year to 2006, but only if it's not already a valid date as is the case. so, the resulting string should be "jan 6 2006 15:15". but if the string already has a valid date, ex "jan 7 2005", I don't want to touch it. I try to use the datetime.parse inside a try/catch, but i couldn't get it to fail. It ...Show All

  • SQL Server SQL 2005. Dynamically assigned column name? Is it possible?

    Is it possible Select * from Mytable Where (@ColName=@ColValue) No. You cannot execute dynamic SQL like that. You have to form a valid SQL statement as a string and execute it using EXECUTE or sp_executesql. See one of those topics in Books Online for more details. Ex: set @sql = 'select * from MyTable where ' + quotename(@ColName) + ' = @colValue' exec sp_executesql @sql, N'@colValue varchar(10)', @colValue = @colValue ...Show All

  • .NET Development How to determine properties of a file on a web site

    I have a requirement of downloading a file from a web site to the local machine. I do this using the WebClient.DownloadFile method (from within a Windows Form application). I need to add a check which will determine the modified date of the file on the web site and compare it with the date of the file on the local machine. If both of them do not match, only then download the file. Does anyone know how to determine the modified date propert ...Show All

  • Visual Studio Express Editions Adding a second form

    In NET 2003, I read this instruction in a book: "Visual Basic .NET requires that you specifically declare a variable of the form's type before you use a second form." Assuming two forms frmMain and frmHelp, I would do this in frmMain: Dim frmHelp As New frmHelp frmHelp.ShowDialog() But in NET 2005 (Express) it seems to work without the Dim: frmHelp.ShowDialog() Has the requirement changed ...Show All

  • .NET Development Metafile not print on correct size

    I want to be able to create a Metafile on the fly based on an other Metafile and then save it. Later, load this new metafile and print it with exact specific dimensions. Since Metafile class on dotNet does not allow you to save as Metafile using the SAVE method, I had to use a method I found on the Internet where I create a RECORDABLE metafile that helps me to create a metafile and save it into a stream (also I have to us ...Show All

©2008 Software Development Network

powered by phorum