Search results

  1. meenctg

    Re link all tables on database open

    I want to re link all my tables from other database which location is same folder. If a user open db1.mdb it automatically re link all tables from db1_be.mdb every time. If not exist db1_be.mdb in current folder it'll show a message. folder name : test test --db1.mdb --db1_be.mbd Please it...
  2. meenctg

    Get Each Image in Report

    I have upload sample db http://www.access-programmers.co.uk/forums/attachment.php?attachmentid=58935&stc=1&d=1434541469
  3. meenctg

    Get Each Image in Report

    I am using MS Access 2003. Where no control source for image control
  4. meenctg

    Get Each Image in Report

    I want to get all record with images in continuous report.
  5. meenctg

    Get Each Image in Report

    No. My code is below Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) imgControl.Picture = photoPath.Text End Sub
  6. meenctg

    Get Each Image in Report

    Thanks for your response. I have already do this, but it repeat first image only for every record not showing individual image per record. My All image are jpg,png format
  7. meenctg

    Get Each Image in Report

    My table structure is id photoPath name 1 C:\a.jpg A 2 C:\b.jpg B How to show all image per row at report details section in a report like ID Image Name 1 Here Image of A A 2 Here Image of B B Please help me.
  8. meenctg

    back end security issue,please help

    I want to protect back end vba code. I have disable open it all back end. But my problem is user can import my all back end to other mdb file.
  9. meenctg

    back end security issue,please help

    In my access database file i have uncheck all of my startup options,uncheck special sortcut, off bypass shift key, protection password of vba code. But my question is,, yet too any body can import all of my form other mdb file. How can restrict my back end to import other file. Any good...
  10. meenctg

    Pop Up Message On Cursor On Object

    Use MouseMove event on your object
  11. meenctg

    Populate combobox value with open form

    I have a unbound combobox in my form. I wanna populate list value in my combobox. first value is current year. Every time populate 6 values. like as 2014-2015 2015-2016 2016-2017 2017-2018 2018-2019 2019-2020 How can do it? please help
  12. meenctg

    Dynamic Report Title using VBA Forms

    Here is a good article about it. I think this will be helpful for your problem. Dynamic report name
  13. meenctg

    Closing a form using vba

    For close current open form just simply use DoCmd.close For more about details : here
  14. meenctg

    How can fix it? any better idea please

    I have two table. TblA(date,income,amountIncome) TblB(date,cost,amountCost) I have made two query for 2 tables sum of amount field.then I have make final query for balance amount Date,SumOfamountIncome,SumOfamountCost,balance My question is when any one table has not record the query doesn't...
  15. meenctg

    Opeing a form to enter new data only.

    it's simple try it http://learn24bd.com/open_form_with_data_entry_mode/
  16. meenctg

    open form with vba

    Hey it's very easy with click event just code it Docmd.OpenForm "membervip" you can visit for open,close form by vba
  17. meenctg

    SQL Insert into shows error

    Thank you. It is working....
  18. meenctg

    SQL Insert into shows error

    I have included the Receive and Send table Receive table structure Send table structure
  19. meenctg

    SQL Insert into shows error

  20. meenctg

    SQL Insert into shows error

    My code is Private Sub Form_AfterUpdate() Dim SQL As String CurrentDb.Execute ("INSERT INTO Receive(ToAc,TransactionNo,AmountReceive) VALUES(" & Me.BkashAccount & "," & Me.BkashAccount & ",'00')") CurrentDb.Execute ("INSERT INTO Send(From,TransactionNo,AmountSend) VALUES(" & Me.BkashAccount &...
Top Bottom