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

Software Development Network >> C#wanabe's Q&A profile

C#wanabe

Member List

AnnyJacky
JohnM 37373737
nx797rd
stw
Jareesh
aby
MayBoy
MichaelMok
sujayg
Steve Starck
mynakedrat
Dataplex Systems Maz
Ranju_Akram
Tom416
ChrisBryan
rgrego
Don Demsak
John Szurek
EW
Prafull V N
Only Title

C#wanabe's Q&A profile

  • Microsoft ISV Community Center Forums MS Word Option Button Collection

    Hi, I am trying to use option buttons from the control toolbox in a word document. I have set the groupname and they work fine but.... I then need to loop through the option button values in the group and I can not work out how to create the array or collection - I have tried the shapes property and the inlineshapes property of the active document but they have not worked. I need code a bit alike below: dim optBtn as msforms.optionbutton for ea ...Show All

  • SQL Server Recovering Reports

    I had an unfortunate situation where a downed server resulted in a significant amount of lost work (the rdl files of several reports I had been working on). I had previously uploaded them to the reporting services server and had hoped that I could recover them from there - but I can't find them anywhere. Is there a mechnaism for recovering rdl files (or at least the sql behind them ) from the reporting services server ...Show All

  • Visual C# how to convert array into an array of bytes?

    Hi, I'm busy in C# trying to send an array (of string) structure from a server to a client app. I cannot find anywhere how to do this. Im using sockets to do this. but there isnt any method to convert the array into byte[]. Any suggestion would be appreciated. byte[] buffer = System.Text.Encoding.ASCII.GetBytes( "Diego" ); You can use Unicode if your string contains non-ASCII characters. Another handy metho ...Show All

  • Windows Search Technologies Cannot install/re-install MS DeskTop Search (nor toolbar): "cannot remove older version"

    I get a message that says #msntb_toolbar_full_name# is unable to load its config file. if you have recently upgraded to a newer version of the # msntb_toolbar_full_name# and have not restarted your computer since the upgrade, please try restarting your computer , if the problem persits, please reinstall the # msntb_toolbar_full _name# I tryed it all and still it doesn't work. Please help Me. Sincerly Marilyn i've got the same messages an ...Show All

  • Windows Forms Datagrid - Paint Override, for particular column

    I am trying to implement the following. http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp print=745 I have the problem I want to implement this only for  Column number 2 ...Show All

  • Visual C# Regarding combo box value property in .net 2.0

    HI I am using combo box, if i manually add the combo box i am not gettin the valuemember of item.If i access the value it is giving object reference not set. I need the value property as i am storing id in that. can any body tell the solution for it. I need to add manually because i want to add extra items to the which i retrieved from database. Thanks & Regards Bhargavi Hi Its means that ...Show All

  • Visual Basic Static Constructors in VB 2005

    Hi I got the following problem: I need some code in a Class library executed when the library is loaded by another app. As I am coming from Java, I looked up some similar feature in C# that seems to exist in VB 2005 too: A shared constructor that gets executed when the class is loaded. However even the simple example below doesn't behave as I intended. However, If I uncomment line 4 then it works as expected. But this is not sufficie ...Show All

  • Windows Forms Animated cursors from embedded resources

    Hi! I know that the .NET Framework doesn't support animated cursors. However, i also know that it's possible doing that with the Win32 API (function LoadCursorFromFile from user32.dll ) . I have done that with success. The problem is that i want to get the animated cursor from the resources of my application. I have no problems getting other kind of embbeded resources (icons, images, etc) with the following method: System.Reflecti ...Show All

  • Software Development for Windows Vista Custom Activities and MSMQ

    I am currently looking to use WWF as a replacement for a custom in-house workflow engine. In particular, I am looking for information on how to implement a custom activity that uses MSMQ and works synchronously from the point of view of the workflow. The  way I believe the scenario would work is: 1) Workflow executes activity 2) In MyActivity.Execute(), Activity sends request message to queue and performs a BeginReceive() on the queue awai ...Show All

  • Visual C++ CodeDomProvider for C++ ? Could not find. Is it VBCodeProvider?

    I could not find a CodeDomProvider implementation for C++. I assumed as a default that it is VBCodeProvider versus CSharpCodeProvider which should cover C# code. Am I right Thanks. It is call CppCodeProvider and it is defined in cppcodeprovider.dll http://msdn2.microsoft.com/en-us/library/849yhx8t(en-US,VS.80).aspx The assembly is located, rather strangely, in <Visual-Studio-install-location>\Common7\IDE\PublicAssemblies ...Show All

  • Visual Studio 2008 (Pre-release) Why should I care about WS-ReliableMessaging?

    I've been trying to understand exactly why I should care about reliable service calls via MSMQ. Now I understand that TCP/IP and HTTP are not 100% reliable methods for transport but would it be safe to say that when considering an intranet solution that ReliableMessaging is almost never really worth the effort I will admit to being somewhat ignorant to the drop rates of typical web service / http calls so if someone could either quickly educa ...Show All

  • Smart Device Development Notification Icon

    Hi all, I am developing a C# .Net application using the .Net Compact Framework. I used the process described at http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/messagewindow.asp to show an icon in the Pocket PC's Today screen's taskbar. I have set the Application Icon also to a valid ICO file. The icon also is used for the aplication's generated EXE and the EXE shows using that same icon. I used the following fu ...Show All

  • .NET Development Need help(urgent) regarding showing XML data in TreeView.

    this is my XML data....<ROOT>biodata <NAME>nix</NAME> <LAST>patel</LAST><WORK>mywork <W>x</W> <W>y</W></WORK></ROOT> i can store this data in TreeView..using code example given in MSDN. but it also shows tags as nodes... that i dont want. it shows like... ROOT |-----biodata |-----NAME |------nix |---- ...Show All

  • Visual Studio Express Editions Error OLE_E_CANT_BINDTOSOURCE when upgrading Visual Basic 6 Project

    Hi I have a Visual Basic 6 project which I tried to upgrade into Visual Basic 2005 Express. It asks me the project type (EXE) and the path. Then on page 5 of 5, status bar entitled 'Invoking Upgrade Engine' I get the above error - Unexpected Exception ... : Not able to bind to the souce ( HRESULT: 0x8004000A OLE_E_CANT_BINDTOSOURCE). And the upgrade engine stops. The upgrade directory is empty. System is clean install WinXP SP2 + updat ...Show All

  • Visual C# how to delete files with a certain extension

    I know how to delete a single file, but how do I delete multiple files at once with a certain extension Is there some file enumeration function I'm unaware of i.e. if exist c:\test\*.txt del c:\test\*.txt System.IO.Directory.GetFiles has an overload which takes a search string as well as a directory path. ...Show All

©2008 Software Development Network

powered by phorum