Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

Mitesh Darji

@Mitesh Darji
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to enable a check box in a gridview
    M Mitesh Darji

    you can write your code in GridView_RowCommand() event Dim ImageID As Integer = Convert.ToInt32(e.CommandArgument) If e.CommandName = "Image" Then 'Find the check box control and you can enable them. end if how to enable a check box in a gridview

    mitesh

    ASP.NET help tutorial

  • Crytal Reports Active X Designer - error
    M Mitesh Darji

    1 . tell me which Crystal Report Version you have to impliment with your project ? 2. Embeded Crystal Report or external ? :-D

    mitesh

    Visual Basic help csharp database visual-studio

  • How chane Font Name
    M Mitesh Darji

    try this one ..... call this function with the 2 parameter . Private Sub SetToolbarFont(ByVal FontName As String, ByVal FontSize As Integer) Dim Temp As New Font(FontName, FontSize) BtnAdd_Panel.Font = Temp BtnSave_Panel.Font = Temp End Sub ------------------------ Parameter1 = Font Name Parameter2 = Font Size :)

    mitesh

    ASP.NET

  • How to transfer data from one form to another form
    M Mitesh Darji

    you can use Hidden field. :)

    mitesh

    ASP.NET tutorial

  • Problem inserting image into table!
    M Mitesh Darji

    Convert image in to binary data and store into the database. and whenever you want to access the image from the database, read binary data from the database and create .bmp file :)

    mitesh

    ASP.NET question database help

  • Getting Column Names Through Query
    M Mitesh Darji

    :cool: you can use the following query in your code ... SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'name_of_the_table'

    Mitesh Darji

    Database csharp database

  • How to reset the identity
    M Mitesh Darji

    Use DatabaseName DBCC CHECKIDENT (tablename, RESEED, 0) OutPut : reset the column identity next value start to 1 :-O

    Mitesh Darji

    Database tutorial question

  • How to set font size of a control dynamically
    M Mitesh Darji

    please try following code for increase font size (Label) Me.Label1.Font = New System.Drawing.Font("arial", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.Size = New System.Drawing.Size(208, 24) Me.Label1.Text = "Label Font Size Change"

    mitesh

    Visual Basic help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups