Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MLNorton
  • Content: Threads
  • Order by date
  1. MLNorton

    Create a Table of Dates

    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...
  2. MLNorton

    ResStream problem

    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...
  3. MLNorton

    Create RES file with brcc32

    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...
  4. MLNorton

    Delphi XE2 and XCode

    I have a series of 20 programs written in Delphi XE2 that read data from Windows Access files. Can these programs be compiled under XCode for the Mac?
  5. MLNorton

    Missing MDAC

    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...
  6. MLNorton

    Web site sisplay from Delphi

    How can I access a Web page from a Delphi program and display on my computer?
  7. MLNorton

    Color DBGrid on CellClick event

    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.
  8. MLNorton

    Try - Exception failure

    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) {...
  9. MLNorton

    I am getting the following error me

    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?
  10. MLNorton

    display data drom a linked ADOTable

    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?
  11. MLNorton

    Cursor will not go down beyond a certain point vertically.

    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.
  12. MLNorton

    delphi XE2 freezes

    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...
  13. MLNorton

    Program ron any Drive letter

    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?
  14. MLNorton

    File Names

    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...
  15. MLNorton

    delphi XE2 Ado Filter problem

    What is wrong with this filter statment? Form_Main.ADOTable1.Filter := 'Active = ' + quotedStr('A') or 'Active = ' + quotedStr('B');
  16. MLNorton

    TEdit missing from Tool Palette

    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
  17. MLNorton

    import adox

    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...
  18. MLNorton

    StrToDate failure

    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?
  19. MLNorton

    ADOTable Filter

    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...
  20. MLNorton

    IF Then problem

    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...

Part and Inventory Search

Back
Top