List all tables and fields in access
Tools -> References ->
Add: ActiveX Data Objects Recordset 2.8 Library, Microsoft DAO 3.6 Object Library, OLE DB Service Component 1.0
Create Table: tblTables_Fieldnames
Fields: TableName, FieldName
Add Module Below and Run
Sub getFieldNames()
Dim db As DAO.Database, rs As DAO.Recordset, rs1 As DAO.Recordset
Dim tdf As DAO.TableDef, fld As DAO.Field
Set db = CurrentDb()
Set rs1 = db.OpenRecordset("tblTables_Fieldnames")
Set rs = db.OpenRecordset("select [name] from MsysObjects where Type=1")
rs.MoveFirst
Do Until rs.EOF
For Each fld In db.TableDefs(rs(0)).Fields
rs1.AddNew
rs1("Tablename") = rs(0)
rs1("FieldName") = fld.Name
rs1.Update
Next
rs.MoveNext
Loop
rs.Close
rs1.Close
End Sub
or,
Open the database, go to
Stationery – File Folder Labels Excel Template / Dosya Sırtlığı excel şablonu
Dar Klasorler icin Excel hucre genişlikleri,
Yükseklik / Height: 84,75 (113pixel)
Genişlik / Width: 93,57 (660 Pixel)
Yükseklik = x 40
Genişlik = x 45
Lost ‘ta yeni bir “ara” daha!
lost dizisinde yayınlanacak olan 8. bölümle birlikte 1 aylık bir ara verileceği açıklandı.

uzun süren WGA grevlerinden sonra, çekimleri ve kurgusu yetiştirilemediği için böyle bir ara verildiğini açıklayan yapımcılar, 9. bölümün 24 nisanda yayınlanacağını duyurdular. Bu sezonun da 13 bölüm olacağı kesinleşirken, yeni sezonun eylül ya da ekim gibi başlayacağı yolunda haberler mevcut.
My Java Links
Setting up the JSP environment
http://www.visualbuilder.com/jsp/tutorial/pageorder/5/
Learn About the Ext JavaScript Library
http://extjs.com/learn/
Visual-Blast Media
http://www.visual-blast.com/
Handling HTML Forms
http://java.sun.com/products/jsp/html/jspbasics.fm2.html
Codango
http://www.codango.com/jsp/
Smashing Coding
http://smashingcoding.com/2008/06/22/100-scripts-pour-jquery/
Excel – List Files & Folders in Harddisk
Add module in VBA Editor and copy below codes and paste. then Run the Macro "FindFiles"