Outlook starts countdown when sending email (1 Viewer)

GinaWhipp

AWF VIP
Local time
Today, 18:11
Joined
Jun 21, 2011
Messages
5,899
You are getting the message because you have joined Text to Numeric. The Assets table is joined to the Marka table. The field is Autonumber in Marka but Text in Assets. You cannot do that, they must be the same Data Type Number to Number or Text to Text.
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Dear Gina,
I am joining the field "MarkaKodu" from Marka table and it is text. I do not understand?
 
Last edited:

GinaWhipp

AWF VIP
Local time
Today, 18:11
Joined
Jun 21, 2011
Messages
5,899
Look in your Relationships window not the query grid window.
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Dear Gina,
I have solved the problem but, what I need to do is concatenate 4 fields in one field and record the result in to BarcodeNumber(this field is already created in Assets table) field in Assets table.
So this is how I will be generating barcode number. Is it possible? If so how?
 

GinaWhipp

AWF VIP
Local time
Today, 18:11
Joined
Jun 21, 2011
Messages
5,899
Do you have the Font? You will need this to show a Bar Code number on a label or in a Report.
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
All those are already done. My problem is, as I explained on previous message,
"I need to do is concatenate 4 fields in one field and record the result in to BarcodeNumber(this field is already created in Assets table) field in Assets table.
Is it possible? If so how? "
 
Last edited:

GinaWhipp

AWF VIP
Local time
Today, 18:11
Joined
Jun 21, 2011
Messages
5,899
Then in your Report for the Control select the Bar Code Font and set the Control Source to
Code:
="*" & [your concatenated field] & "*"
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Dear Gina,
Not in the report actually, first, I want to store concatenated numbers in the Assets table in BarcodeNumber field.
 

GinaWhipp

AWF VIP
Local time
Today, 18:11
Joined
Jun 21, 2011
Messages
5,899
You cannot show the Bar Code in the Table, it will only show in the Report. And there is no need to store the concatenated value as you can pull it up anytime. Just use it in a Report.
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Not the actual barcode, just the numbers like "001232310011" , still not possible? :) like calculated field...
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Is it possible to do this with vba code in after-update event of BarcodeNumber...
 

azlan

Registered User.
Local time
Today, 15:11
Joined
Aug 14, 2014
Messages
39
Dear Gina,
I have come to the end of this project but I have one last problem to solve,
there is a code supposed to run behind the BarcodeNumber field on the main form to generate eancode, which is;
Code:
Private Sub BarcodeNumber_AfterUpdate()
Me.eancode = code128(BarcodeNumber)
Me.Requery
Me.Refresh
End Sub
but it is not working.
I also attach the Access file. Please help.
 

Attachments

  • EnvanterKayıtları4-ATOZ7.1.zip
    1.4 MB · Views: 71

Users who are viewing this thread

Top Bottom