Search

You searched for the word(s): userid:871978

Matching Posts

  • CustomSerialization

    Hello, I'm using CustomSerialization, and have a property public List<string> Groups { set { _Groups = value; } get { return _Groups; } } in one of my classes, after serializing, i look through my xml and see <Groups className="System.Collections.Generic.List`1[[System.String, mscorlib, Version=x.x.x.x, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxx]]">someItems</Groups> what attribute for Groups property i have to set, to get just <Groups>someItems</Groups>
    Posted to C# (Forum) by tratto on 10/14/2009
  • Windows Address Book

    Hello, I'm trying to read contacts from Windows Address Book(Outlook Express), there's no API like for Outlook to work with, so i wrote this: var key = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\WAB\\WAB4\\Wab File Name"); if (key != null) { var wabFilePath = key.GetValue("").ToString(); StreamReader st = new StreamReader(wabFilePath); try { var length = (int)fileStream.Length; // get file length buffer = new byte[length]; // create buffer int count; // actual
    Posted to Enterprise Services Integration (Forum) by tratto on 10/6/2009
  • get Outlook ContactItems dynamically

    Hello, i need to load Microsoft.Office.Interop.Outlook dll dynamically and get ContactItems, so i wrote: var requestType = Type.GetTypeFromProgID("Outlook.Application", false); if(requestType != null) { var assembly = Assembly.LoadFrom(requestType.Assembly.Location); var applicationClass = Activator.CreateInstance(requestType); var methodGetNSp = applicationClass.GetType().GetMethod("GetNamespace"); if(methodGetNSp != null) { object nameSp = methodGetNSp.Invoke(applicationClass
    Posted to C# (Forum) by tratto on 9/30/2009
  • Outlook Address Book (Wab) Files

    Hello, I wonder, how can i open *.wab file(somePath\fileName.wab) and read it using c#? All i found with a help of google was about opening local address book on my computer, but i need to open any wab file, provided by user.
    Posted to C# (Forum) by tratto on 9/9/2009
  • Re: Outlook Address Book (Wab) Files

    Thank you all, but you didn't really help me, because i actually don't need to work with Outlook itself, i just need to be able to work with wab files, that can be provided from different paths, see?
    Posted to C# (Forum) by tratto on 9/9/2009
  • Re: ActiveX control

    Hi Avinash, thanx for your reply, but can you explain me how it works, i mean, what cab project must contain, how connect download and installation process with my activeX control. I hope you understood me. p.s.: cv_sudheer, thanke you, you example is also usefull
    Posted to Client Side Web Development (Forum) by tratto on 9/1/2009
  • Re: ActiveX control

    Avinash, i found some info and answered myself on previous post("Hi Avinash, thanx for your reply..."), but some things are still incomprehensible So, as i've understood i create a cab file, that must contain my activeX conrtol(my cs file with some code), what next?
    Posted to Client Side Web Development (Forum) by tratto on 9/1/2009
  • ActiveX control

    Hello, I need to open a com port with a help of activeX contol. First, i create a content page with one asp button. By clicking on this button i want to run a client script that, (the order might not be correct): 1). create an object of my activeX control that provides some functionality(var x = new ActiveXObject("mynamespace.myclass");) 2). if activeX is not being installed on client pc, install it and get a permission from user to run it(this is a biggest question for me!!!!) 3). open
    Posted to Client Side Web Development (Forum) by tratto on 8/31/2009
  • TreeView Drag/Drop

    Hello, I'm using asp TreeView control on my webForm. I can't find how to implement drag&drop functionality. Maybe some client side script will help me, i just don't know. Please help!
  • Re: Page Refresh

    Hello, Maybe this wiil help http://www.astahost.com/info.php/Cnet-Web-Timer-Control-Tutorial_t6605.html
    Posted to Web Forms (Forum) by tratto on 7/6/2009
Page 1 of 5 (41 items) 1 2 3 4 5 Next >