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

Search:

Type: Posts; User: hersh

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Thread: Img Collection

    by hersh
    Replies
    1
    Views
    10,767

    Img Collection

    Hi,

    In my ASP.NET Webform page, I have a fileuploader and a div. On single selection of image, the selected image is added to the div. All works fine. Now, I would like to add a checkbox or some...
  2. Replies
    0
    Views
    5,890

    Enable Image Zoom only

    Hi,

    Is there a way to disable page zoom and enable only image zoom of the page in a touch screen?

    Thanks
  3. Replies
    0
    Views
    3,401

    Repeater and BulletList

    Hi,

    I was given just one table with many information in it. The requirement is as follows.

    Table:
    I have added columns that are only required.

    UId(string) Class(string) Primary...
  4. Replies
    1
    Views
    3,724

    Re: Min and Max or Range

    From all the expert adivces I get here, I think I should not do what I intend to do. As it is a ASP.NET Webforms application using VB.NET, I retrieved all the records from the table, and inserted...
  5. Replies
    1
    Views
    3,724

    Min and Max or Range

    Hi,

    I have a table in SQL like so

    UId Class
    1 Apple
    2 Apple
    3 Apple
    3a Apple
    4 Orange
  6. Thread: Replicate a form

    by hersh
    Replies
    4
    Views
    12,954

    Re: Replicate a form

    Thank you so much for your valuable advice. I have decided to go with MVC.

    Yes, the users will be using a mobile or tab with touch screen

    Thanks
  7. Thread: Replicate a form

    by hersh
    Replies
    4
    Views
    12,954

    Re: Replicate a form

    I would like to get advice on what method of asp.net to use, like MVC or WebForms. The form is a consent form, which will have a unique reference number, name, address, signature, date, etc, which...
  8. Thread: Replicate a form

    by hersh
    Replies
    4
    Views
    12,954

    Replicate a form

    Hi,

    I am given a hard copy consent form that needs to be in a web page including an area for signature. What's the best way to accomplish this?

    Thanks
  9. Replies
    0
    Views
    5,466

    Advice from experts

    Hi,

    I am creating an Asp.Net MVC5 application where I have two areas called Teacher and Parent. I want to display a Child's home page based on the area, that is, both the teacher and parent have...
  10. Replies
    0
    Views
    2,626

    Refresh Partial View

    Hi,

    I am developing a Web Application with Asp.NET MVC5. As I dont have much experience, I am stuck with a functionality using JQuery and Partial View.

    I have a Side Menu as a partial view in a...
  11. Replies
    0
    Views
    3,572

    Multiple checkbox

    Hi,

    I am working on ASP.NET MVC5.

    I have a two class that has many fields. In a different view, I want to insert two fields from on table and a list of one field from the other class.
    ...
  12. Thread: Side Bar

    by hersh
    Replies
    0
    Views
    4,691

    Side Bar

    Hi,

    I am new to ASP.NET. I would like to know how to create a page with a side bar, which is tree like. There are two tables with a one to many relation. So I get all records from table A that...
  13. Replies
    0
    Views
    4,551

    Queried result to Listbox in Partial View

    Hi,
    I am new to ASP.NET MVC. I would like to get some help on getting custom data from controller to view.
    I have queried and concatenated the result of a table from model based on a criteria. I...
  14. Replies
    0
    Views
    3,911

    Store persistent data

    Hi,

    I am totally new to ASP.NET. Please help me to create a project to store persistent data.

    Thanks
  15. Replies
    1
    Views
    775

    LINQ with ref parameter

    Hi,

    I'd like to know if it's possible to get a collection of something with LINQ with the 'where' clause equal to a function that has a ref parameter.


    var objCol = from id in ids
    ...
  16. Replies
    0
    Views
    570

    WMF to Base64String

    Hi,

    Is it possible to convert a .wmf file to Base64String?

    Thanks
  17. Thread: Inheritance

    by hersh
    Replies
    1
    Views
    3,219

    Inheritance

    Hi,

    I have a class A that inherits another class B and calls a method in Class B. That method in turn calls another method which is overridable in Class B. Now, I want the inner method to be...
  18. Replies
    9
    Views
    5,694

    Re: Passing Memory Stream between C# Windows

    I got it to work with the help of this website. :)

    https://github.com/jimschubert/wixedit/blob/master/src/Helpers/CopyDataMessenger.cs

    :thumb: to jim

    Thanks all for your help.

    Thanks
  19. Replies
    9
    Views
    5,694

    Re: Passing Memory Stream between C# Windows

    This did work!


    MemoryStream ms = new MemoryStream();
    using (ms = GetMemoryStream())
    {
    ms = new MemoryStream(ms.ToArray());

    ...
  20. Replies
    9
    Views
    5,694

    Re: Passing Memory Stream between C# Windows

    I get an error is at

    int dataSize = Convert.ToInt32(ms.Length);

    and the error is "Cannot access a closed Stream."
  21. Replies
    9
    Views
    5,694

    Re: Passing Memory Stream between C# Windows

    This is the code to send stream. But it doesn't really work.

    using (MemoryStream ms = GetMemoryStream())
    {
    int hWnd = FindWindow(null, "Receive");
    ...
  22. Replies
    9
    Views
    5,694

    Re: Passing Memory Stream between C# Windows

    In two different applications.
  23. Replies
    9
    Views
    5,694

    Passing Memory Stream between C# Windows

    Hi,

    I'd like to know if it's possible to pass memory stream between C# windows.

    Thanks
  24. Thread: SendMessage

    by hersh
    Replies
    1
    Views
    943

    SendMessage

    Hi,

    I'm trying to use the SendMessage for sending memory stream. I did some code, but not working. Here's my code



    stream.Seek(0, SeekOrigin.Begin);

    ...
  25. Thread: Ignore Error

    by hersh
    Replies
    2
    Views
    2,137

    Re: Ignore Error

    I think I should add an licx file. How do I go about it? Please help
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured