- Component - Install Packages - Add
- Program Files\Borland\Delphi 7\Bin\ dclqrt70.bpl
- Ok
- https://www.youtube.com/watch?v=WhBzDLBjHSk
couple of comments, documentations, experiences, and discoveries.. ofcourse, by yours truly.
Friday, May 25, 2018
Adding QuickReports to the Delphi 7 Component Palette
Thursday, August 13, 2015
Low disk space on C
pagefile.sys = my computer > properties > advanced > performance > advanced > virtual memory
addtl space = control panel > administrative tools > computer mgt > disk mgt > shrink & extend volume
Thursday, June 4, 2015
sql error on unjspf_id update...
Thursday, October 16, 2014
Row | Column does not unhide in Excel -- How to
Wednesday, January 22, 2014
Solution:
To set the rowset size with the BDE, do the following:
- Click on your TDatabase component
- In the object inspector, expand Params
- Put in a Key of "ROWSET SIZE"
- Put in the desired value
Sunday, June 16, 2013
Remove mailbox from outside Outlook...
Solved!
Monday, October 15, 2012
MS Excel Macro for exporting a text file with both comma and quote delimiters
- Open a new workbook.
- In Microsoft Office Excel 2003 or in Microsoft Excel 2002, point to Macro on the Tools menu, and then click Visual Basic Editor. Alternatively, press ALT+F11.
In Microsoft Office Excel 2007, click the Developer tab, and then click Visual Basic in the Code group. Alternatively, press ALT + F11.
Note To show the Developer tab in the Ribbon, click the Microsoft Office Button, click Excel Options, click thePopular category, click to select the Show Developer tab in the Ribbon check box, and then click OK. - In the Visual Basic Editor, click Module on the Insert menu.
- Type or paste the following sample code in the module sheet.
Sub QuoteCommaExport() ' Dimension all variables. Dim DestFile As String Dim FileNum As Integer Dim ColumnCount As Integer Dim RowCount As Integer ' Prompt user for destination file name. DestFile = InputBox("Enter the destination filename" _ & Chr(10) & "(with complete path):", "Quote-Comma Exporter") ' Obtain next free file handle number. FileNum = FreeFile() ' Turn error checking off. On Error Resume Next ' Attempt to open destination file for output. Open DestFile For Output As #FileNum ' If an error occurs report it and end. If Err <> 0 Then MsgBox "Cannot open filename " & DestFile End End If ' Turn error checking on. On Error GoTo 0 ' Loop for each row in selection. For RowCount = 1 To Selection.Rows.Count ' Loop for each column in selection. For ColumnCount = 1 To Selection.Columns.Count ' Write current cell's text to file with quotation marks. Print #FileNum, """" & Selection.Cells(RowCount, _ ColumnCount).Text & """"; ' Check if cell is in last column. If ColumnCount = Selection.Columns.Count Then ' If so, then write a blank line. Print #FileNum, Else ' Otherwise, write a comma. Print #FileNum, ","; End If ' Start next iteration of ColumnCount loop. Next ColumnCount ' Start next iteration of RowCount loop. Next RowCount ' Close destination file. Close #FileNum End Sub - Before you run the macro, select the data that you want to export, and then run the QuoteCommaExportsubroutine.
Sunday, February 26, 2012
SQL transfer data from one table to another...
//creating new table
SELECT *
INTO new_table
FROM old_table
WHERE condition
// with existing table
INSERT new_table SELECT * FROM old_table
<< for transfer with static value and/or tables with NOT exact same columns only >>
INSERT INTO new_table (columns, columns, columns)
SELECT columns, sum(), static_value FROM old_table
WHERE condition
Friday, November 25, 2011
Outlook: “Can’t Create File” Error When Opening Attachment
1. Click Start > Run and type regedit.
2. Click Edit > Find and type OutlookSecureTempFolder.
3. When regedit has found the entry, it will tell you where your Outlook temporary files are stored. It will look similar to:
C:\Documents and Settings\username\Local Settings\Temporary Internet Files\OLKrandomnumber
4. Open My Computer and navigate to this location on your hard drive.
5. Delete all of the files in this folder.
6. Test open attachment
7. Restart Microsoft Outlook if not able yet
Wednesday, March 16, 2011
"different...."
today i stood up and left home for work past 6am... i have lots of things in my mind right now so i took a different path... a path i never havent crossed yet... somehow it felt strange but good... the early walk, the smell of the grass, breakfast alone... it was like going to work on your first day... it was like one of my travels in a different country...
i hope this is a start of a new good beginning in my life...
EDIT: at 6pm of this day, my father died.
I love you Pa. You'll always be here in my heart.
Thank you for everything. We'll surely miss you. Rest in Peace with the Lord.
Tuesday, October 5, 2010
solved problem: MSSQL Maintenance Plan Save Error "no such interface supported"
Microsoft SQL Management Studio does not allow me to save any Maintenance Plan and pops-up this message:
"no such interface supported"
after long research on the net, solution is very simple.
solution:
regsvr32 msxml3.dll
regsvr32 msxml6.dll
Thursday, January 28, 2010
30 second Speech by Bryan Dyson (CEO of Coca Cola)
WORK EFFICIENTLY DURING OFFICE HOURS AND LEAVE ON TIME. GIVE THE REQUIRED TIME TO YOUR FAMILY, FRIENDS & HAVE PROPER REST.
Wednesday, November 25, 2009
Monday, November 9, 2009
OLPC, after years of launch... still unbeatable!
Friday, October 16, 2009
9 year-old kid created a starwars website !
I thought he might be 9 when he created this during the time of the movies like revenge of the Sith which is 2005 making him 13 already but his images were from the new Clone Wars series so the site is quite updated, at least 2008 or current. Therefore he's really 9.
I'm impressed on his skills considering his age. Kids usually don't have interest yet on such matters. I have a niece with same age so I can relate and I'm really amazed.
Here's his site: http://www.schwef.com/nolan
A jedi, he will be.
Thursday, October 15, 2009
Tweet using command line
The script you will see takes exactly one argument: your tweet. You use it like this:
$ ~/bin/tweet "Writing my TechMails"
Successful tweet!
Once you run the script and look on Twitter, your post is there for all to see. The script itself uses nothing fancier than cURL to post the text provided to the script.
The text must observe shell constraints: it must be properly escaped for special characters (such as "!" and "?"). The script doesn't require the tweet to be in quotes; you could use:
$ ~/bin/tweet Does my tweeter need quotes\?
Successful tweet!
and it would work just as well.
The script itself:
#!/bin/sh
tweet="${@}" user="username"
pass="sekret"
if [ $(echo "${tweet}" | wc -c) -gt 140 ]; then echo "FATAL: The tweet is longer than 140 characters!"
exit 1
fi
curl -k -u ${user}:${pass} -d status="${tweet}" https://twitter.com/statuses/update.xml >/dev/null 2>&1
if [ "$?" == "0" ]; then
echo "Successful tweet!"
fi
Output of the cURL command is directed to /dev/null because it returns some XML that we don't need to care about. The script also makes sure that the tweet is 140 characters or less, and exits with an error if it is longer.
Wednesday, September 30, 2009
Star Wars: The Old Republic Cinematic Trailer
I have never seen a Vader-looking Sith fight like this!
