Hi
If there is a reference tables for each listbox, do as follows
qry1 = SELECT [Product type] FROM [Product type Table]
qry2 = SELECT [ISIN] FROM [ISIN table]
qry3 = SELECT [Counterparty code] FROM [Counterparty code table]
qry4 = SELECT [Trader] FROM [Trader table]
Then proceed as...
Hi r24igh
A very simple way to obtain your list, create a table month with this structure:
monthNumber as integer
monthName as string
Data
1 | january
2 | february
3 | april
and so on
then a SQL query as follows:
SELECT month.*
FROM [month]
WHERE (((month.[monthNumber]) Between...
Hi
A little mistake replace mySetting with flag. I certify this code 100% free bugs
Public Function VisibleOnOff(formName As String, controlName As String, flag As Boolean)
Forms(formName).Form.Controls(controlName).Visible = flag
End function
Hi databasedonr
An other way
In a module
Public Function VisibleOnOff(formName As String, controlName As String, flag As Boolean)
Forms(formName).Form.Controls(controlName).Visible = mySetting
End Function
In a form you would write
Private Sub cmdButtonVisible_Click()
Call...
Hi Jaye7
I tested this code, it works :
DoCmd.TransferDatabase acImport, "Microsoft Access", "D:\..\DataBaseSourceName.accdb", acForm, "ObjectNameSource", "ObjectNameTarget"To go further read msdn.microsoft.com/fr-fr/library/office/ff196455.aspx
;)
Hi Snak9r
To help you, could you:
Explain your functional needs, it means without considering technical database problems?
If you have already developed something, post it too?
Hi funk88
here is a free soft to model: jfreesoft.com/JMerise/
conceptual data model (CDM)
Generate automatically ta Physical data model from the CDM
And to go further with normalization a wiki topic herehttpshttps://en.wikipedia.org/wiki/Database_normalization#Normal_forms
Good reading;)
Hi carlpoppa
here is a free soft to model: jfreesoft.com/JMerise/
conceptual data model (CDM)
Generate automatically ta Physical data model from the CDM
And to go further with normalization a wiki topic herehttpshttps://en.wikipedia.org/wiki/Database_normalization#Normal_forms
Hi nhood42
With a VBA program but what do you mean by "enter"? Add or update records?
For adding records with the same date, call this code on click event button
sDate ="#07/25/2016#"
For i to 100
sqlINSERT = "INSERT INTO tableName ( field) VALUES (" & sDate & ")"
DoCmd.RunSQL =...
Hi aark,
Spontaneously, I'll create 4 queries, each of them based on transactions table.
qry1 = 'SELECT [Product type] FROM [transactions table]'
qry2 = 'SELECT [ISIN] FROM [transactions table]'
qry3 = 'SELECT [Counterparty code] FROM [transactions table]'
qry4 = 'SELECT [Trader] FROM...