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
U

Ujjaval Modi

@Ujjaval Modi
About
Posts
31
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to encrypt?
    U Ujjaval Modi

    Hi, If you are using VS 2005 then you can use classes of System.Security.Cryptography namespace. For eg. you can use TripleDESCryptoServiceProvider to encrypt and decrypt data programatically and store it in database.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    Database question tutorial

  • disabling gridview
    U Ujjaval Modi

    Hi, Just set the gridview's Enabled property to "False", i.e. GridView.Enabled=False

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C#

  • SQL Query
    U Ujjaval Modi

    Hi, You can write query as follows : select * from Table1 where status='NotApproved' and Flaged NOT LIKE ('1') assuming that both status and flaged field are of varchar data-type.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    Database database tutorial question

  • validation help
    U Ujjaval Modi

    Hi, I think if you will set the Font property of that particular textbox to Arabic font, then whatever text is entered in the textbox will be in Arabic only and you wont need to validate it.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    Visual Basic help

  • C#;how to trace DataGridView's click event
    U Ujjaval Modi

    Hi, Can you please elaborate that exactly what you want to do; because datagridview does have a CellClick Event.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C# csharp debugging help tutorial

  • Using different fonts for Firefox
    U Ujjaval Modi

    Hi, Maybe these links will help you : 1) Link 1[^] 2) Link 2[^] 3) Link 3[^]

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    Web Development question c++ css architecture help

  • How to implement tree structure in c# using data structures in C#?
    U Ujjaval Modi

    Hi, Even I am working on similar tree-project. I have already performed lot of research on it but not getting some proper result. Can you please mail your code on ujjavalmodi@gmail.com It would be a great help. Thanx in advance ! :)

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C# csharp data-structures help tutorial question

  • DataGridView DeleteRow issue
    U Ujjaval Modi

    Hi, If you are writing your code to delete rows in datagridview's SelectionChanged event, then you will face this problem. try writing the deletion code in datagridview's CellClick event.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C# help tutorial question

  • How to create a desktop application for demo purpose
    U Ujjaval Modi

    Hi, Just see this link : http://www.codeproject.com/KB/vb/registry_with_vb.aspx[^]

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C# csharp asp-net com help tutorial

  • Crystal Report Deployment
    U Ujjaval Modi

    Hi, Even I am not much good at crystal reports but even I faced same problem in my application for crystal reports and I learnt to add its Installer, so I helped you out in it. Regarding this problem, your Logon to database is failing, thts why your report fails to load. Try this code : dim rptObject as new ReportObject rptObject.SetDatabaseLogon(username,password) rptObject.SetDataSource(dataTableObject) crv.ReportSource = rptObject Here rptObject is an object of your "enq.rpt" report.

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    Visual Basic csharp visual-studio sysadmin help tutorial

  • C#.NET windows services
    U Ujjaval Modi

    Simply see the following article on codeproject http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx[^]

    Regards, Ujjaval Modi :) Manpower moves wrenches, horsepower moves cars, and the power of the mind moves the world.

    C# csharp help

  • Winforms Datagrid
    U Ujjaval Modi

    Hi, I think you don't have any such property "autogenerate columns" in datagrid for winforms. Just select the fields you require to display in your database query. Or else you can set the "Visible" property equal to 'False' for particular column in the datagrid which you dont want to display.

    C# csharp winforms question

  • how to get the cell value of a DataGridView 's click event
    U Ujjaval Modi

    Hi, First of all check whether the Handler you have defined is handling the cell's content click. It will be called only when you click on the cell's content. Its better to define a Handler for CellClick Event. To access the current cell's value you can use following : GridView1.CurrentRow.Cells("ID").Value

    Regards, Ujjaval Modi

    C# debugging help tutorial

  • wpf c# event handler
    U Ujjaval Modi

    Hi, You can just add eventhandler for the button in code-behind file as follows : button1.Click += new RoutedEventHandler(button1_Click);

    Regards, Ujjaval Modi

    C# csharp question wpf

  • inserting datagridview rows in database(windows application)
    U Ujjaval Modi

    Hi, Just try to put your code in try & catch block. Because you are getting datatype mismatch error. The conflict is between the data you are passing and the data-type of the fields in database. May be error is due to date field.

    Regards, Ujjaval Modi

    C# help csharp database

  • How to create website project using .NET Framework 3.0
    U Ujjaval Modi

    How to create website project using .NET Framework 3.0 in VS 2005 ?

    Regards, Ujjaval Modi

    ASP.NET csharp dotnet visual-studio tutorial question

  • grid view bound column binding with a typeddataset column
    U Ujjaval Modi

    Hi, You just need to set the AutoGenerateColumns property of GridView to False. Then the GridView will display only the Bound Columns added to it.

    Regards, Ujjaval Modi

    ASP.NET css wpf wcf tutorial question

  • How to display Crystall Reports.
    U Ujjaval Modi

    Hi, On your Win Form add crystalreportviewer and reportdocument from the Toolbox. and in code just add following 2 lines : reportdocument.SetDataSource(dataset1.Tables(0)) crystalreportviewer.ReportSource = reportdocument where your dataset contains the report data to be displyed.

    Regards, Ujjaval Modi

    Visual Basic question csharp design help

  • Crystal Report Deployment
    U Ujjaval Modi

    Hi, While creating the setup of your application, right click on Application Folder and Add -> Assembly to the Folder. It will open .NET assemblies window. Select all the crystal-report related assemblies. When u will build the setup project u will obtain a installer for crystal reports. First install this setup and then install your application. This should work.

    Regards, Ujjaval Modi

    Visual Basic csharp visual-studio sysadmin help tutorial

  • database design
    U Ujjaval Modi

    Just mention clearly that u want a working sample.

    Regards, Ujjaval Modi

    Database database design help
  • Login

  • Don't have an account? Register

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