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

Milad Biroonvand

@Milad Biroonvand
About
Posts
44
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Add Reference At Runtime
    M Milad Biroonvand

    How do I add a reference at runtime ? thanks!

    Visual Basic question

  • moving column in sql
    M Milad Biroonvand

    What this command do? EXEC sp_rename @objname = ‘test.col3_new’, @newname = ‘col3′, @objtype = ‘COLUMN’ Whether the priorities are changed? This will only change the name? But I want to change priority Thanks!

    Database database tutorial question

  • moving column in sql
    M Milad Biroonvand

    Hi Thank you for the answer In your table, not the other table I mean, is the priority fields

    Database database tutorial question

  • moving column in sql
    M Milad Biroonvand

    how to moving column in sql ? by code ?

    Database database tutorial question

  • How to convert an SQL table to Access table
    M Milad Biroonvand

    How to convert an SQL table to Access table in vb6 .

    Visual Basic database tutorial

  • What is the equivalent code in vb or c#?
    M Milad Biroonvand

    What is the equivalent code in vb or c#? This code is complete. download : this is delphi project http://www18.zippyshare.com/v/70783499/file.html[^] this is text file http://www18.zippyshare.com/v/94346699/file.html[^] please heeelp me:confused::confused::confused:

    Delphi question csharp delphi html com

  • What is the equivalent code in vb? [modified]
    M Milad Biroonvand

    How are you? Thank you for the answer. If the code is complete? This code is complete. this is delphi project http://www18.zippyshare.com/v/70783499/file.html[^] this is text file http://www18.zippyshare.com/v/94346699/file.html[^]

    Visual Basic delphi question graphics

  • What is the equivalent code in vb? [modified]
    M Milad Biroonvand

    Hi How are you? Thank you for the answer. If the code is complete? { ***** Process scheduling - FCFS, HRRN, SPN simulator ******** ** ** Tested on Microsoft Windows XP SP2 ** ** Written with Borland Delphi 7 Enterprise edition ** ******************************************************* * Programmer: ** ** ******************************************************* * Greets: ** ** To my dear mother, father & anybody who supports me ** ******************************************************* } unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, XPMan, ComCtrls; (****************************************************************************) Type TProcess=Record Name:String; ArrivalTime:Integer; ServiceTime:Integer; FinishTime:Integer; TimeLeft:Integer; Tq:Integer; {Turnaround time: total time in system, waiting + execution} TqDivTs:Real; {Tq/Ts: Is the normalized turnaround time. This value indicates the relative delay experienced by a process.} end; (****************************************************************************) Type TOrigin=Packed Record X: Longint; Y: Longint; end; (****************************************************************************) Type TForm1 = class(TForm) XPManifest1: TXPManifest; SaveDialog1: TSaveDialog; SaveDialog2: TSaveDialog; MemoService: TMemo; Memo1: TMemo; MemoArrival: TMemo; MemoProcess: TMemo; Label1: TLabel; Label2: TLabel; Label3: TLabel; Image1: TImage; BtnStart: TBitBtn; btnSavePicture: TBitBtn; btnSaveLog: TBitBtn; ComboScheduling: TComboBox; Label5: TLabel; StatusBar1: TStatusBar; procedure ComboSchedulingSelect(Sender: TObject); procedure MemoArrivalKeyPress(Sender: TObject; var Key: Char); procedure MemoServiceKeyPress(Sender: TObject; var Key: Char); procedure BtnStartClick(Sender: TObject); procedure FormCreate(Sender: TObject); procedure btnSavePictureClick(Sender: TObject); procedure btnSaveLogClick(Sender: TObject); (****************************************************************************) private Procedure SortQueue; Procedure CheckErrors; Procedure ClearCanvas; Procedure FilterNumericKeys(var Memo:TMemo;var Key:Char); // don't let to enter non-nu

    Visual Basic delphi question graphics

  • What is the equivalent code in c#?
    M Milad Biroonvand

    What is the equivalent code in c#? This is Delphi code Thanks!

    {
    ***** Process scheduling - FCFS, HRRN, SPN simulator ********
    **
    ** Tested on Microsoft Windows XP SP2
    **
    ** Written with Borland Delphi 7 Enterprise edition
    **
    *******************************************************

    **
    *******************************************************
    * Greets:
    **
    ** To my dear mother, father & anybody who supports me
    **
    ******************************************************* }

    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, StdCtrls, Buttons, ExtCtrls, XPMan, ComCtrls;

    (****************************************************************************)
    Type
    TProcess=Record
    Name:String;
    ArrivalTime:Integer;
    ServiceTime:Integer;
    FinishTime:Integer;
    TimeLeft:Integer;
    Tq:Integer; {Turnaround time: total time in system, waiting + execution}
    TqDivTs:Real; {Tq/Ts: Is the normalized turnaround time.
    This value indicates the
    relative delay experienced by a process.}
    end;
    (****************************************************************************)
    Type TOrigin=Packed Record
    X: Longint;
    Y: Longint;
    end;
    (****************************************************************************)
    Type
    TForm1 = class(TForm)
    XPManifest1: TXPManifest;
    SaveDialog1: TSaveDialog;
    SaveDialog2: TSaveDialog;
    MemoService: TMemo;
    Memo1: TMemo;
    MemoArrival: TMemo;
    MemoProcess: TMemo;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Image1: TImage;
    BtnStart: TBitBtn;
    btnSavePicture: TBitBtn;
    btnSaveLog: TBitBtn;
    ComboScheduling: TComboBox;
    Label5: TLabel;
    StatusBar1: TStatusBar;
    procedure ComboSchedulingSelect(Sender: TObject);
    procedure MemoArrivalKeyPress(Sender: TObject; var Key: Char);
    procedure MemoServiceKeyPress(Sender: TObject; var Key: Char);
    procedure BtnStartClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure btnSavePictureClick(Sender: TObject);
    procedure btnSaveLogClick(Sender: TObject);
    (****************************************************************************)
    private
    Procedure SortQueue;
    Procedure CheckErrors;
    Procedure ClearCanvas;
    Procedure FilterNumericKeys(var Memo:TMemo;var Key:Char); // don't let to enter non-numeric keys

    C# delphi question csharp graphics

  • What is the equivalent code in vb? [modified]
    M Milad Biroonvand

    What is the equivalent code in vb? This is Delphi code Thanks!

    {
    ***** Process scheduling - FCFS, HRRN, SPN simulator ********
    **
    ** Tested on Microsoft Windows XP SP2
    **
    ** Written with Borland Delphi 7 Enterprise edition
    **
    *******************************************************

    **
    *******************************************************
    * Greets:
    **
    ** To my dear mother, father & anybody who supports me
    **
    ******************************************************* }

    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, StdCtrls, Buttons, ExtCtrls, XPMan, ComCtrls;

    (****************************************************************************)
    Type
    TProcess=Record
    Name:String;
    ArrivalTime:Integer;
    ServiceTime:Integer;
    FinishTime:Integer;
    TimeLeft:Integer;
    Tq:Integer; {Turnaround time: total time in system, waiting + execution}
    TqDivTs:Real; {Tq/Ts: Is the normalized turnaround time.
    This value indicates the
    relative delay experienced by a process.}
    end;
    (****************************************************************************)
    Type TOrigin=Packed Record
    X: Longint;
    Y: Longint;
    end;
    (****************************************************************************)
    Type
    TForm1 = class(TForm)
    XPManifest1: TXPManifest;
    SaveDialog1: TSaveDialog;
    SaveDialog2: TSaveDialog;
    MemoService: TMemo;
    Memo1: TMemo;
    MemoArrival: TMemo;
    MemoProcess: TMemo;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Image1: TImage;
    BtnStart: TBitBtn;
    btnSavePicture: TBitBtn;
    btnSaveLog: TBitBtn;
    ComboScheduling: TComboBox;
    Label5: TLabel;
    StatusBar1: TStatusBar;
    procedure ComboSchedulingSelect(Sender: TObject);
    procedure MemoArrivalKeyPress(Sender: TObject; var Key: Char);
    procedure MemoServiceKeyPress(Sender: TObject; var Key: Char);
    procedure BtnStartClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure btnSavePictureClick(Sender: TObject);
    procedure btnSaveLogClick(Sender: TObject);
    (****************************************************************************)
    private
    Procedure SortQueue;
    Procedure CheckErrors;
    Procedure ClearCanvas;
    Procedure FilterNumericKeys(var Memo:TMemo;var Key:Char); // don't let to enter non-numeric keys

    Visual Basic delphi question graphics

  • How can I object name that is in the form and the mouse is on it do?
    M Milad Biroonvand

    How can I object name that is in the form and the mouse is on it do? Thanks! milad.biroonvand

    Visual Basic question

  • show or show dialog all the forms in my project
    M Milad Biroonvand

    hi I form a loop display all do

    Visual Basic

  • How the Windows password at run-time get؟
    M Milad Biroonvand

    Hello, my Hindi,(dear Mr Shameel) I only question I, Windows password hash is.It is not؟ Before start Windows ...is it posible ?Some programs have this feature. I do not joke!!! Be successful. I am waiting for your reply :) :) :)

    Visual Basic question

  • How the Windows password at run-time get؟
    M Milad Biroonvand

    Hello My Dear Friends Thanks for your response, To my question : I'm into Windows,I'd like to write a program that won the Windows password ,Would like the Windows password do I show a message box, Whether it is possible?I wrote this program? If the question is not clear, again say Be successful Mr Milad Biroonvand (M:B)

    Visual Basic question

  • How the Windows password at run-time get؟
    M Milad Biroonvand

    I want the Windows password at run-time achieved to bring,How do I do it,Is this possible? All are successful :wtf: :wtf:

    Visual Basic question

  • C# code snippet need help converting to VB
    M Milad Biroonvand

    Look at this site ,please convet csharp-to-vb :omg: :omg:

    Visual Basic csharp visual-studio wcf com help

  • Delete a node with double-clicking on it
    M Milad Biroonvand

    You want an example,Or a project for me to upload in this field. thanks!

    Visual Basic question

  • Delete a node with double-clicking on it
    M Milad Biroonvand

    Dear Friends Thank you very much gave the answer Especially Christian Graus and Mycroft Holmes. Code is very good. I hope you succeed

    Visual Basic question

  • Delete a node with double-clicking on it
    M Milad Biroonvand

    How can I when double click on a node, I can edit it? I mean the node is a treeview. Thank you before answering. I am waiting for your answer.

    Visual Basic question

  • How to sort the following list?
    M Milad Biroonvand

    How to sort the following list, nodes is my list tv is my treeview Now I'd like nodes to sort.

    Dim nodes As New List(Of TreeNode)
    Dim queue As New Queue(Of TreeNode)
    Dim top As TreeNode
    Dim nod As TreeNode
    For Each top In Tv.Nodes
    queue.Enqueue(top)
    Next
    While (queue.Count > 0)
    top = queue.Dequeue
    nodes.Add(top)
    For Each nod In top.Nodes
    queue.Enqueue(nod)
    Next
    End While

    Thanks!

    Visual Basic data-structures 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