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

Software Development Network >> Eugene Mayevski's Q&A profile

Eugene Mayevski

Member List

Robert101
Manoj Kumar31390
Yarborg
cipher nemo
simflex
JohnBurns007
mark2741
Sun Haiwei
CatalinB
Lions
BilalShahzad
wen pin
mjhoagland
mickey arnold
RSF
matthew1564
Nick Asseloos
julio666
jbender
Adaoud
Only Title

Eugene Mayevski's Q&A profile

  • Windows Forms Combination of fields as DisplayMember?

    Hi, I'm binding to an array that holds class objects. Setting a DisplayMember works fine for one property like: cbPartners.DisplayMember = "Name"; cbPartners.DataSource = myArray However, I'd like the display member to be a combination of several properties like "FirtstName" and "Name". Is there any way to do something like that Thanks You have to hook the ComboBox Format event.  If you're binding via ADO.NET, you're handler would look something like this: private void comboBox1_Format( object sender, ListControlConvertEventArgs e) {     DataRowView drv = (e.ListItem as DataRo ...Show All

  • Visual C# Generics & Type Casting

    I'm trying to write a generic method to sort 2-dimensional arrays. I'm converting each row in the array to a delimited string, which I then add to an ArrayList and then use the ArrayList.Sort() method. The problem I'm having is in then casting the objects in the sorted ArrayList back to the original type. This is the code: Type type = typeof(T); sortedArray[rowIndex, columnIndex] = (type) delimitedFields[columnIndex]; I'm getting this error: The type or namespace name 'type' could not be found (are you missing a using directive or an assembly reference ) I can't work out what I'm missing. I have the following using ...Show All

  • SQL Server SQL Reporting Services 2000 with SQL Express?

    While we are awaiting the reporting integrated with SQL Express can we use Reporting Services 2000 to report from a SQL Express Installation I have tried to install the trial version of Reporting Services 2000 (which doesn't require SQL) but the installation fails because I get the error "Reporting services doesn't work with this edition of SQL" Can anyone think of a way around this RS2000 will not work with SQL Express or any 2005 version of SQL Server. You can sign up for the beta or wait for release of SQL Express with Advanced Services which will include a paired down version of RS200 ...Show All

  • SQL Server URGENT, sqlServermanagementStudio can't find sqlExpress.Though it has apparently been installed

    hiya, I'm trying to install. I was getting an error relating to "sqlncli.msi" So, I: 1) extract sqlncli.msi 2) repair it 3) reboot 4) re-install Apparently, it installs successfully. 1) the sqlExpress service is running ( but I don't see the wee green icon in the sys tray) 2) I try to use sqlServermanagementStudio...I look for sqlExpress in the login page, but it can't connect. I am in a big hurry for this, should I unistall then re-install sqlServermanagementStudio I simply want to run sqlExpress locally on a machine, nothing fancy..Can I use a command to attach the database ...Show All

  • Visual Studio Tools for Office The customization does not have the required permissions to execute when to host file on web server

    i made word doc and it is running on client but when i put it on web host and try to open it from client this error raise *The customization does not have the required permissions to execute.* how to configure server security in microsoft .net framework 2 to make it work correctly please any help in this matter Hi, This is a deployment problem, basically you need to modify the client Security Policy to grant Full Trust to your customization. This article should give you enough information on how to do the appropiate changes: How to: Grant Permissions to Documents and Workbooks in Shared Locations I hope this helps. ...Show All

  • SQL Server External Stylesheet in a database

    Has anyone run into the issue where you need to create a an external stylesheet to reference in reporting services The approach I've taken is to create an external stylesheet and save the values of the stylesheet in a database. I created a database to hold the values of the stylesheet and then reference the styles from the database in reporting services. It works great, however, I've now run into the problem where you can only work with one dataset in a table. So I have one dataset for the styles and then I need to work with another dataset for the actual data. Has anyone taken a similar approach or have an idea of how I can ...Show All

  • Visual Studio Problem with CreateProperty

    If I create a property like this: < CreateProperty " Value=" something" >   < Output TaskParameter="Value" PropertyName="MyProperty" /> </ CreateProperty> MyProperty will get "something" instead of " something", the space is gone. Is this expected or a bug Regards, Gustavo Guerra Yes you are right.  The property strings are getting trimmed today in this scenario.  Are you blocked on a real need to have whitespace at the beginning or the end of the string If you want spaces at the beginning or the end, you can use %20 in the attribute value to escape it ...Show All

  • .NET Development How to serialize object in vb.net ?

    Hi Guys,  My task requires me to do a registration (Add,update,delete records), without using a database, and to use serialization of objects.  Does anyone have any idea of doing it, or have sample codes for me to explore. Please help thank you. Hi, Take a look at an object database as well to get a better idea: http://www.versant.com/ad Information on serialization: .NET Serialization http://www.ondotnet.com/pub/a/dotnet/2003/10/13/serializationpt1.html Regards, Vikram ...Show All

  • SQL Server setup.exe /qb REMOVE=ALL instancename=test

    Hello , I am using MSFT SQL Server 2005 (v 9.00) and have 3 databases listed under Database when I launch SQL Mgmt Studio These are: Deva, Devb, Test I have to UNINSTALL and REMOVE only the TEST instance. I did following: setup.exe /qb REMOVE=ALL instancename=test I launch the above from C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap> but it does NOT UNINSTALL that TEST instance... can anyone please help me on this Whats the BEST WAY to remove a DB Instance via COMMAND LINE.... NOTE: I have to use COMMAND LINE only to uninstall... please help THANKS! Mr. Bombay ...Show All

  • Visual Studio Intellisense Manager

    Intellisense Manager does not appear in the Tools menu on my Visual Studio 2005 set up... any one come across this Nevermind I found this... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=138278&SiteID=1 ...Show All

  • Windows Search Technologies ibm0007.exe error

    Hello, My brother has a compact SR1103 with win XP & sp2. He had a CPU fry and replaced it, now his computer is a 486 (speed wise) The computer is so unbelievably slow and hangs during tasks. He has the error box popup for missing file: ibm0007.exe. It says the file should be in: C:\Program Files\Common Files\Microsoft Shared\Web Folders\ibm0007.exe. The file is not on his computer anywhere. I have done a search on mine and 3 friends with no results. I did do a goooogle on ibm0007, it seems to have to do with graphics and/or L2 cashe. A  restore point does not replace the file. Any suggestions would be wonderful and extremely ap ...Show All

  • Windows Forms export the data from text file to the table in the Database

    Can someone please let me know how to export the data from text file to the table in the database Thanks What line does the exception happen What format is the text in You might be better off just reading the file one line at a time and parsing it and updating a table in a database with that information.  ...Show All

  • Visual Basic C# or VB ?

    other than familiar syntax is there any reason to use VB instead of C# is the difference only syntax Hi Ever since .NET arrived this question has stirred emotions between those developing in VB and those developing in C# (needlsessly so in my opinion). You often find the usual ramblings that C# is better than VB which I guess stems from when VB classic was an interpreted language against C++ which was a compiled language. Prior to the release of VS 2005 there were things that you could do in C# that you couldn't do in VB such as operator overloading, XML comments (although this can be achieved using third party ...Show All

  • Visual C++ Localization

    I am localizing my application. I want to give my application French Language support. I have localized all the strings except the text on the button of message boxes generated by the framework.For example: when I close my application I get close application msg but the three button's text is english or when I Load a File which does not exist from Windows Standard Input Dialog. How can I localized it as I have got to know its ComDlg32.Dll and Windows generate it for every localized version, a diff version of this Dll. Any help will be highly appreciated. Best Regards Yes you can... You get a message when ...Show All

  • .NET Development run-time defined method return type in .NET?

    I would like to define a method that returns a type that is determined at runtime, i.e., public RuntimeDeterminedType Method(); Is this possible using any of the .NET languages If so, would you please post an example or a link to an example. Thanks in advance! Matthew No you can't technically do this as the compiler must be able to generate the code to return the type. However depending on your needs there are several ways to accomplish the same task. The easiest is of course to simply have the method return object . The method caller is then responsible for typecasting accordingly. This ...Show All

©2008 Software Development Network