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

Search:

Type: Posts; User: VitalyUr

Search: Search took 0.02 seconds.

  1. ASP:Imagebutton asyncpostback issue in Google Chrome

    Hello All,
    I have the following code:

    Client Side:

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD...
  2. Replies
    2
    Views
    1,021

    Code First Programming

    Hello All,

    I Have this code:



    public class Users
    {
    [DatabaseGenerated(DatabaseGeneratedOption.None)]
    public int ID { get; set; }
  3. Replies
    0
    Views
    3,903

    Update a DataRow

    Hello all.

    I have to update a value in a row. I use the code:

    dr["Field"] = value;

    but no change occurs.

    i've tried both:
    dr.BeginEdit();
  4. Replies
    5
    Views
    14,989

    Re: [RESOLVED] Serializing an Enum

    Thank you all for the quick response

    Arjay, it works great, i know now that Enums should be serialized too.
  5. Replies
    5
    Views
    14,989

    Re: Serializing an Enum

    When i debug the program it says:
    "InvalidOperationException was unhandled"
    'There was an error reflecting type 'System.Collections.Generic.List' 1[Library.Users]".

    and it points on this line: ...
  6. Replies
    5
    Views
    14,989

    [RESOLVED] Serializing an Enum

    Hi all,

    i need to backup a list filled with objects of this class:


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
  7. Replies
    1
    Views
    5,301

    PictureBoxes Intersection in C-sharp

    Hello All.

    I have just started to study C-Sharp and i'm having trouble checking if 2 picture boxes intersect each other.

    I wrote this code:

    if...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured