Good day iI am happy to join this science community- my first project need help

walidkamel245

New member
Local time
Today, 01:10
Joined
Jul 13, 2023
Messages
9
kindly find attchment my projet
when open transcation the enty no 2 it reates it self - if you pls help me - thank you
 

Attachments

  • project no 1.accdb
    project no 1.accdb
    1.3 MB · Views: 117
  • The original entry.png
    The original entry.png
    161.6 KB · Views: 93
  • The original entry repeats itself.png
    The original entry repeats itself.png
    157.6 KB · Views: 92
I open transactions and nothing changes?
It's source is
Code:
SELECT TransActions.TransID, TransActions.TransDate, TransActions.MZ, Sum(MoneyMoves.Debit) AS Totol
FROM TransActions INNER JOIN MoneyMoves ON TransActions.TransID = MoneyMoves.TransID
GROUP BY TransActions.TransID, TransActions.TransDate, TransActions.MZ;
 
thnk you for yor reply can make dubbel clik

choose trancation form and make dubbel clik on no 2 by clor gray you find may proplem
 
MoneyMoves1 MoneyMoves1

رقم الحساب​
الحساب​
مدين​
دائن​
رقم السند​
شرح الحركة​
91009004​
ASS-TRANSPORTATION & CARS​
90,348.00​
0.00​
2​
95095001​
PREVIOUS YEAR P& L​
0.00​
90,348.00​
2​
91009004​
ASS-TRANSPORTATION & CARS​
90,348.00​
0.00​
2​
95095001​
PREVIOUS YEAR P& L​
0.00​
90,348.00​
2​
this dubel if you remve that the trancation repet aging
 
And I get
1689264994004.png

and if I open the form manually I get the error then
1689265241757.png


I am out as I cannot read Arabic and recognise fields etc
 
And I get
I found I get this in all arabic written databases. Only solution i found is to create a new DB and import.
 
ok thnk you i will make chang and import
No. We would have to import into an english version. I do not think there is something you can do on your end.
 
No. We would have to import into an english version. I do not think there is something you can do on your end.
I just tried importing into a new DB amd got the same issue? :(
 
Me too. Normally this will fix it.
 
Believe this describes the cause.
I have to believe there is some globabl setting to fix this.
 
good dy my english DB-
 

Attachments

  • project no 1.accdb
    project no 1.accdb
    3.1 MB · Views: 103
  • The original entry.png
    The original entry.png
    180.8 KB · Views: 86
  • The original entry repeats itself.png
    The original entry repeats itself.png
    214.8 KB · Views: 86
the basic entry 2000 in record no 3

when we open it in form trancation make duble
 
@walidkamel245 accidentally reported post 12 instead of replying to it. Reply was:

tahks for help
 
any one help pls
Still get
1689338259076.png


That is despite changing the code to
DoCmd.OpenForm "EditRecords", , , "[TransID]= " & Me.TransID 'Forms![Transactions]![TransID]"

Supply something that at least works and shows the issue. :(

Not even sure what you are trying to do, as that doubleclick opens form Edit Records whose source is Transactions1 and the table is empty?
 
@walidkamel245. Unfortunately, I do not think you can do anything on your side. I believe this is a language variant problem. It will run fine on your system, but not on an English version. Hopefully, someone here can look at it. I currently do not have the time. I think we can open it if we change our regional settings to match yours. Can you tell us what your regional settings are? If not we may be able to just look at the code and see if we see the issue without being able to run it. I may have a chance later today.
 
Your sql in the load event of EditRecords form is invalid anyway ? :(

This works
Code:
Insert into TransActions1 select * from TransActions
Insert into MoneyMoves1 SELECT TransID, AccID, Debit,Credit,NoRec, Note FROM MoneyMoves

you had
Code:
CurrentDb.Execute "Insert into TransActions1 (select * from TransActions"
CurrentDb.Execute "Insert into MoneyMoves1 (SELECT TransID, AccID, Debit,Credit,NoRec, Note FROM MoneyMoves)"
You really need to test SQL statements before trying to run them with VBA. :(
 

Users who are viewing this thread

Back
Top Bottom