How do I add a reference at runtime ? thanks!
Milad Biroonvand
Posts
-
Add Reference At Runtime -
moving column in sqlWhat 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!
-
moving column in sqlHi Thank you for the answer In your table, not the other table I mean, is the priority fields
-
moving column in sqlhow to moving column in sql ? by code ?
-
How to convert an SQL table to Access tableHow to convert an SQL table to Access table in vb6 .
-
What is the equivalent code in vb or c#?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:
-
What is the equivalent code in vb? [modified]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[^]
-
What is the equivalent code in vb? [modified]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
-
What is the equivalent code in c#?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 -
What is the equivalent code in vb? [modified]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 -
How can I object name that is in the form and the mouse is on it do?How can I object name that is in the form and the mouse is on it do? Thanks! milad.biroonvand
-
show or show dialog all the forms in my projecthi I form a loop display all do
-
How the Windows password at run-time get؟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 :) :) :)
-
How the Windows password at run-time get؟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)
-
How the Windows password at run-time get؟I want the Windows password at run-time achieved to bring,How do I do it,Is this possible? All are successful :wtf: :wtf:
-
C# code snippet need help converting to VBLook at this site ,please convet csharp-to-vb :omg: :omg:
-
Delete a node with double-clicking on itYou want an example,Or a project for me to upload in this field. thanks!
-
Delete a node with double-clicking on itDear Friends Thank you very much gave the answer Especially Christian Graus and Mycroft Holmes. Code is very good. I hope you succeed
-
Delete a node with double-clicking on itHow 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.
-
How to sort the following list?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 WhileThanks!