Search Results

Search found 9 results on 1 pages for 'hmemcpy'.

Page 1/1 | 1 

  • What are some "must have" Windows programs?

    - by hmemcpy
    Inspired by this question, what 3rd party essential software do you have on a Windows machine? One per answer please, and if you can, please provide the download/site link. Notice: Check the other pages before you propose a new answer, as your program might have been mentioned already. If so, vote for this answer instead of writing a new one.

    Read the article

  • Transfer music from iPhone to the computer

    - by hmemcpy
    I'd like to transfer the (non-DRM) music I have on my iPhone to my computer. What application can I use to do that? I found several shareware that didn't really work. EDIT I've removed the Windows tag, so please feel free to add solutions for other OSes.

    Read the article

  • Pairing a Bluetooth headset with Windows PC

    - by hmemcpy
    I was wondering if it's possible to pair my Bluetooth headset (i.Tech Arrow 2) with my Windows 7, so that I can use it in Skype, for instance? Windows recognizes it, but it fails to find drivers for it, and I can't seem to find any drivers for it on their website. Any suggestions?

    Read the article

  • Deserializing JSON into an object with Json.NET

    - by hmemcpy
    Hello. I'm playing a little bit with the new StackOverflow API. Unfortunately, my JSON is a bit weak, so I need some help. I'm trying to deserialize this JSON of a User: {"user":{ "user_id": 1, "user_type": "moderator", "creation_date": 1217514151, "display_name": "Jeff Atwood", ... "accept_rate": 100 }} into an object which I've decorated with JsonProperty attributes: [JsonObject(MemberSerialization.OptIn)] public class User { [JsonProperty("user_id", Required = Required.Always)] public virtual long UserId { get; set; } [JsonProperty("display_name", Required = Required.Always)] public virtual string Name { get; set; } ... } I get the following exception: Newtonsoft.Json.JsonSerializationException: Required property 'user_id' not found in JSON. Is this because the JSON object is an array? If so, how can I deserialize it to the one User object? Thanks in advance!

    Read the article

  • Finding a ProjectItem by type name via DTE

    - by hmemcpy
    Given a type name, is it possible to use DTE to find the ProjectItem that the type is located in? Something similar to how the Navigate To... dialog works in Visual Studio 2010. The closest I could find is Solution.FindProjectItem, but that takes in a file name. Thanks!

    Read the article

  • Access to modified closure, is this a ReSharper bug?

    - by hmemcpy
    I have the latest ReSharper 5.0 build (1655), where I have encountered the suggestion 'Access to modified closure' on the following code: var now = new DateTime(1970, 1, 1); var dates = new List<DateTime>(); dates.Where(d => d > now); and the now inside the lambda expression is underlined with the warning. I'm pretty sure that's a ReSharper bug, but is it really?

    Read the article

  • Determine if method is unsafe via reflection

    - by hmemcpy
    I'm looking for a way to filter out methods which have the unsafe modifier via reflection. It doesn't seem to be a method attribute. Is there a way? EDIT: it seems that this info is not in the metadata, at least I can't see it in the IL. However reflector shows the unsafe modifier in C# view. Any ideas on how it's done? Thanks!

    Read the article

  • Creating a MySQL view with an auto-incrementing id column

    - by hmemcpy
    I have a MySQL database from which a view is created. Is is possible to add an auto-incrementing id for each row in the view? I tried CREATE ALGORITHM=UNDEFINED DEFINER=`database_name`@`%` SQL SECURITY DEFINER VIEW `MyView` AS set @i = 0; select @i:=@i+1 as `id` ... but that doesn't work in a View. Sorry, my SQL is weak, any help is appreciated.

    Read the article

1