Could u tell me how to get name and count of tables in a MS Access database? I tried by MSysObjects but i have an error. Error says that to use administrator account. But i have used just an administrator account one. Could u tell me any other ways for that matter.
phowarso
Posts
-
name & count of tables in a MS Access database -
how to get names and count of tableshow to get names and count of tables in a database from sqlserver and MSAccess? could u tell me pls?
-
changing monitor screen resolutioni wanna know..... how to change monitor screen resolution from the original resolution when my application active and how to return original resolution when my application is on taskbar or close? i'll very thz u..... :laugh: :laugh: :laugh:
-
How to match between two images?hello! i wanna to know how to match between two images which are same or not? could u tell me please! if u can, i'll thank you very much!!!!!!!! :) :) :)
-
about dll filei wanna know built in function of window dll files... eg. mcisendstringA is a built in function (or point) of winmm.dll file could u help me any link or E-Books... i'll thz u ...
-
context menu for CD drivehello! i wanna add a context menu as "Close CD Tray" in CD drive's context menu. but i can't only CD drive's context menu. my context menu is working on all drives as C:, D:, E: so on. i wanna show it just only on CD drive's context menu. could u help me pls? i'll thz u very much.... :laugh: :laugh: :laugh:
-
How to get dll's functions?Hello! I wanna know window dll file's built in function. Could u help me any links or any E-books? I'll thz u very much.......... :laugh: :laugh: :laugh:
-
context menuHello! Could u help me pls :laugh: :laugh: :laugh: How to add a new context menu into the CD drive's context menu ? [ie.close tray,open tray(eject)] i'll thz ........
-
How to add a new contect menu in CD drive's popup menu?Hello All!~ I wanna know... How to add a new contect menu in CD drive's contect menu?
-
How to add a new popup menu in CD drive's popup menu?Hello All!~ I wanna know... How to add a new popup menu in CD drive's popup menu?
-
software self check in VB.netWhat is software self check? How can wirte software self check in VB.net? plz....thz....
-
how can read the sector on a CD directly ?how can read the sector (eg: sector number 150 to 200) on a CD directly in VB.net? please help me...thz....
-
How to know multisession CD by using VB.Net?I wanna know , is it a multisession CD or not? it mean that can i add some data to that CD or not? If u can, pls give me some code..... I'll very thank ..............................
-
how to get burned date on CDRom?I wanna get burned date on CDRom.... How to get it by using VB.net? If u can, Pls tell me.... I'll very thank ..........
-
How to get burned date from CDRom?I wanna know burning date on a CDRom. How to get it by using VB.net? If u can, pls help me... :) I'll very thank............... :laugh:
-
3D project for VB.NetCan we create a 3D project in VB.Net? If we can, please express me any project or some codes... thank you :) ;) :laugh:
-
3D project for VB.NetCan we create a 3D project in VB.Net? If we can, please express me any project or some codes... thank you :-O :) ;)
-
Deleting the Data...How to delete data in a table which multiselected rows from a DataGridView?:confused:
-
How to retrieve the data by Date/Time Data Type from a Table ?My table has 4 fields that Name, Age, Date and Town. Data can add and delete. Data from Date field are displayed onto the ComboBox by DISTINCT SQL keyword. I wanna retrieve the data from Name, Age and Town by choosing a data from ComboBox that contains date data. I will display my data onto a DataGridView. When I run my project no data display noto the DataGridView. But I get for 18/3/08, error format 12:00:00AM is displayed in Message box and for other date I get correct format. My code is following... Private Sub cbbDate_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cbbDate.SelectedIndexChanged On Error Resume Next Dim dt As Date cbbDate.Text = cbbDate.SelectedItem If Not cbbDate.Text = "All Date" Then dt = CDate(cbbDate.SelectedItem).ToString("M,d,yyyy") MsgBox(dt) DisplayReport("SELECT * FROM tblSave WHERE Date=" & dt & " ORDER BY Name ASC") Else ShowAll() End If Date Field Format in the table is 'Short Date'. ( month, day, year) Date format from ComboBox is ( day, month, year).
-
How to collect the same data?I have a table's field that "Date". It contains severial data, some are same. (Eg. 20/11/07 20/11/07 20/11/07 25/12/07 25/12/07 25/12/07 27/12/07 27/12/07 29/12/07 29/12/07 30/12/07 31/12/07 ,etc...) 20/11/07 is 3 data. 25/12/07 is 3 data. 27/12/07 is 2 data. 29/12/07 is 2 data. 30/12/07 is only one data. 31/12/07 is only one data. I wanna display the above data onto a ComboBox by desending. I wanna collect only one data for a same many data. (Eg. 31/12/07 30/12/07 29/12/07 27/12/07 25/12/07 20/11/07 ... etc ) Please give me some suggestion for above metter.:confused: