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
M

miftha

@miftha
About
Posts
7
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • programatically Adding fields to the crystal reports from C# code
    M miftha

    I have a array of file names to be added to a Crystal report. The array size changes. So one option i have is to bind the array to the Formula Feild or to add formula feilds (for that matter any type of fields) to an existing crystal report from the program. Is there any way to do either of this

    AMIF

    ASP.NET csharp data-structures

  • Display info in a process
    M miftha

    I have a process to be run at the end of year in a leave management system. The process is started when the start process button is pressed, I need to show the employee number currently been processed in a label or a text box. What i did was i gave (Ex : text1.text = tabel(0).row(0).item(0)) when the record is bean read in the for loop. but it shoes only the last record in the process because the processing bar in the page was activated while the process is on. Is there another way to show the record that is being processed in the text box. Thanx :laugh: AMIF

    ASP.NET

  • add a check box to a data grid column
    M miftha

    I want to know how I can add a check box to a data grid column so i can select multiple rows as selected. Also if it is not possible can I use the select button and then identify several records as selected to be used for processing thanks AMIF

    ASP.NET css

  • VB to Crystal Reports parameter passing
    M miftha

    How do you code passing of parameters from a VB form to a crystal report. Ex : There is a textbox called "name" I need the value of that box (name.text) to be displayed in the crystal report AMIF

    Visual Basic

  • Loading Command prompt from vb6
    M miftha

    I want to load command prompt from VB 6.0 for a click event of a button. can this be done if it can be how to do it. A. Miftha Idroos B.Sc. Engineering, AMBCS, AMIE(SL) Hatton National Bank, Sri Lanka

    Visual Basic tutorial

  • Using Multiple constructors in base and sub class
    M miftha

    I have the following problem. Say, that I have a class called Point which has x,y and the distance from (0,0). There are two constructors, one take all three values and the other take only x ,y. I subclass this to a circle class which has its own radius and distance from (0,0). To initialize I want to use two different constructor that use either of the base class constructors. This causes an error in the program. Why is that, is there any solution Check the following code and the error msg. // Point3 class represents an x-y coordinate pair. using System; namespace CylinderTest { // Point3 class definition implicitly inherits from Object public class Point3 { // point coordinate int x, y; // default constructor public Point3() { // implicit call to Object constructor occurs here } // constructor public Point3( int xValue, int yValue ) { // implicit call to Object constructor occurs here X = xValue; Y = yValue; } // property X public int X { get { return x; } set { x = value; // no need for validation } } // end property X // property Y public int Y { get { return y; } set { y = value; // no need for validation } } // end property Y // return string representation of Point3 public override string ToString() { return "[" + X + ", " + Y + "]"; } } // end class Point3 } // Circle4 class that inherits from class Point3. using System; namespace CylinderTest { // Circle4 class definition inherits from Point3 public class Circle4 : Point3 { private double radius; // default constructor public Circle4() { // implicit call to Point constructor occurs here } // constructor public Circle4( int xValue, int yValue, double radiusValue ) : base( xValue, yValue ) { Radius = radiusValue; } // constructor public Circle4( int xValue, int yValue ) : base( xValue, yValue ) { } // property Radius public virtual double Radius { get { return radius; } set {

    C# help

  • Corp an Image in VB 6.0
    M miftha

    I want to corp an image iin VB 6.0 by giving the coordinates of the place I need to corp and want to save it to another place. Any one knows how to do it.Please help A,Miftha Idroos Trainee Software Engineer. HNB. Sri Lanka

    Visual Basic help tutorial
  • Login

  • Don't have an account? Register

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