I need to create a Table of the weeks and dates of the Mondays of a year. I select the first Monday of the year from a MonthCalendar.
The Table values are as follows:
Week integer (1, 2, 3..52)
DateName string (Jan 7, Jan 14, Jan 21..Dec 30)
WeekName string (1/7, 1/14. 1/21..12/30)
Can...
I am trying to learn how to imbed Graphics in an executable Delphi program. I have created a RES fil;e that contains two graphics. I have created a Procedure that I found on the Internet as follows:
implementation
{$R *.dfm}
{$R MyPic.RES}
procedure TForm_Main.Button_PrintClick(Sender...
I need to include two bit files in a Delphi XE2 Program. I need to create a RES file. I have a RC file as follows:
MyPic.RC
Brigade BMP "Brigade.bmp"
Flags BMP "SigFlags,bmp"
When I run:
BRCC32 MyPic.RC
the file MyPic.RC cannot be found. MyPic.Rc is in the E:/DelphiRes directory. I have...
I received the following error in Delphi XE2 in a Windows 7 machine:
Project Membership.exe raised exception class Exception with message "Error creating object. Please verify that Microsoft Data Access Components 2.1 (or later) have been properly installed".
I have deleted Delphi XE2...
I need to be able to change the color of a DBGrid Row by the CellClick event which I use for another purpose. I need the changed color to remain when I go to another Row. I want all Rows that I CellClick to change their color.
I have a program that captures customer information. It works. When I add an exception it activates the exception for all inputs including those that are valid. If I comment out the Exception it works. Here is the key portion of my code.
protected void Page_Load(object sender, EventArgs e)
{...
I am getting the following error message in a Delphi EX@ program that I am modifing, "Class TButton not found". I get the message when I Compile. I have checked on every Button in the program and I cannnot find a problem. What can be causing this?
I have a Delphi XE2 program with two Access linked ADOTables. Table 1 contains the names and addresses and Table 2 contains Transactions for each individual in Table 1.
How can I select a a name from Table 1 and display in a DBGrid the Transactions for that individual?
I am developing a short simple program in Delphi XE2. I can scroll down to about two lines below the end of the program and the cursor will not go any further. I got a message about Cursor freezing but I do not understand what I have done or how to resolve the problem.
I have Delphi XE2 program that has developed a unique problem. I call a form that has two buttons, One is a Close button. The other calls a procedure in the Form, When the form is displayed the entire program freezes, There is no response from anything. I have to reboot to clear the problem...
I have programs that are distribute but all are created on my E drive and that Drive is hard coded into the program when I install ADOConnection.
How can I configure my delphi programs to work on any Drive letter (C.D or any other letter) without any action by the user?
I have written a text file in Delphi XE 2 and now I want to read it but I get an error, Invalid File Name 's%. My file name includes blanks which may be the problem. If blanks are not allowed why does Delphi XE2 allow me to write the text file in the first place. My file name is:
'/Software...
In Delphi XE2 the Tool Palette has moved from the right side of the window to a horizontal segment at the top right of the window and the TEdit icon is missing.
HELP
I am trying to import ADOX into Delphi 2007 in accordance with:
ABOUT COM article
New...Access Database from Delphi
Page 1: Delphi, ADOX and ADOExpress against MS Access.
I get to the section where I need to change Class names but the Class Names field is grayed out and I cannot change the...
String to Date conversion in Delphi 2007 fails.
Var
X: string;
MyDate: TDateTime:
begin
X := '07/03/2012';
MyDate := StrToDate(QuotedStr(X));
End;
The Error states that ‘07/03/2012’ is not a valid date.
What is my problem?
I have an ADOTable with multible fields. I need to filter on two fields, PayFor and PayYear, both string values. The filter values are:
PayFor = Reunion
PayYear = 2012
The following code does not work:
var
s: string;
t: string;
begin
With Form_Main.ADOTable5 do
begin
s...
I have a Delphi 2007 procedure to determine the numerical value of the first Monday in the current year. My code is as follows:
Var
WeekDay: integer;
MyDate: TDateTime;
begin
Decodedate(Date,Y,M,D);
MyDate := EncodeDate(Y,1,1);
WeekDay := DayOfWeek(MyDate);
if...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.