CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: JPederson

Search: Search took 0.18 seconds.

  1. Replies
    11
    Views
    4,665

    Re: Converting binary jpeg into BITMAP

    Actually, I believe the namespace includes streaming compression. If you need each bitmap to be compressed separately then you could create a header for each compressed bitmap.

    example....


    ...
  2. Re: How to read specific XML string sections using LINQ

    I am just going to be but I would like to point out one thing, you are trying to select a Description Element when you should be selecting an Attribute



    should be

    Description =...
  3. Replies
    11
    Views
    4,665

    Re: Converting binary jpeg into BITMAP

    checkout the System.IO.Compression namespace
  4. Re: how to show data in gridview from two tables

    Just to clarify, are the two tables linked using Primary / Foreign keys or are they completely unrelated?
  5. Replies
    2
    Views
    924

    Re: Question about Regex

    Google Regular Expression Set's (A set can be defined inside of an open and closed bracket)

    I have attached a small application that I wrote when I was learning regular expressions, the zip file...
  6. Re: Best approach for saving form data into database

    I would suggest looking into (n)Layer application development.
  7. Replies
    9
    Views
    1,258

    Re: Saving a varible to the Hard Drive

    Have you looked into serialization?



    using System;
    using System.IO;
    //must add a reference to System.Drawing.dll
    using System.Drawing;
    using System.Runtime.Serialization;
    using...
  8. Replies
    1
    Views
    1,606

    Re: WCF Data Layer Security

    I forgot to mention that I am interested in Role-Based security
  9. Replies
    1
    Views
    1,606

    WCF Data Layer Security

    So I have been reading alot about WCF and (n)Layer application development but I am having trouble understanding how to use Declarative security. How do I implement declarative security on the WCF...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured