Recent content by Tinny

  1. Tinny

    last letter -s

    my native language is C#
  2. Tinny

    forms Queries with graphics? Bill Get Up

    Does anyone try to play with graphics? I use a form with 3 tabs and tree forms ..in the second form (tab) I get some numbers from a customer and in the 3rd form I got a graphics with these two numbers but there not working ..i try to get these numbers from the form direct .. I get it but I can...
  3. Tinny

    last letter -s

    No is only one report but i dont understand the two ss..why is it posible that eny name ends with ss? i need onlly if is s or whatever last latter if right(field,1)="s" then field=left(field,len(field)-1)) my problem is that i use ony one textfield like ="I Got Todate" & Date() & "From" &...
  4. Tinny

    last letter -s

    how can i remove the letter if is s with vba in my reports? for example is is bobys to be boby?
  5. Tinny

    ********* really need help .Please take a look. last to finish************

    I forget .. My first form haven't any Code but my 2nd has Option Compare Database Sub Form_Current() Dim ParentDocName As String On Error Resume Next ParentDocName = Me.Parent.Name If Err <> 0 Then GoTo Form_Current_Exit Else On Error GoTo...
  6. Tinny

    ********* really need help .Please take a look. last to finish************

    Yeeeeeeeeeeeeeeeeap..That Works Thank You!!!!!!! Really thanks :D :D :D :D and if i want a total ? in my form i make a total witch is a sum from my frm_Transactions (3rd form) how can i pass it to my report? do i use a query or i can pass it from my form? in my zip there is my db if you want...
  7. Tinny

    VBA variables

    Hello everyone ... I want to ask something useful i think for every one about VBA variables... How can i write a variable in my form that can count the customers and then just put it in a textfield like TotalCustomers() and "prints" the results? The Total Customers is TotalCustomers()
  8. Tinny

    ********* really need help .Please take a look. last to finish************

    Yes ok . I am sorry...My problem is That i can speak very well english and if i tell you whats my problem you don't anderstand ..So I try.. I 've got tree form together and a query in a report So..When i press my button to open the report the report is from a query and the query is from my forms...
  9. Tinny

    ********* really need help .Please take a look. last to finish************

    Currently went you typing I was upload my files Sorry but I have a problem with my upload ..Now it’s ok Here it is
  10. Tinny

    ********* really need help .Please take a look. last to finish************

    Hello everyone ..I really really really really need help with this ..It have to be work but I don know why it’s not working . This is the last thing and I finish my project so if you help me I’ll really appreciate that. Images and my db Included in my zip
  11. Tinny

    Active Forms And Queries

    i try to get a query in a report from three diffrents forms but it works only from the active form (Main) and not from subforms. If i use only one form everythings it's ok SELECT tbl_Customers.LastName, tbl_Customers.FisrtName, tbl_Agreements.CarId FROM tbl_Customers INNER JOIN...
  12. Tinny

    Form to Report

    I need to export my form in a report choosing the name of the month and the agreement type. Chose a month and choose the type /12months /6months
  13. Tinny

    Smart Access Application (vbs)

    Hello everyone. This is my first post (for not asking help :) ) I look at topics for start up options etc and I think all of this it’s ok but there is a smarmiest way to start your application. So here we go.. We make a vbs Script Set WSHShell = CreateObject("WScript.Shell") WSHShell.Run...
  14. Tinny

    Separate Different Type Agreements

    OldsofBoss I Find The Solution ...Only with a simple query..Thank you enyway for help Leary ..I can separe in the end with SELECT tbl_Customers.LastName, tbl_Customers.FisrtName, tbl_Agreements.CarId, tbl_Agreements.AgreementFistMonthStart, tbl_Agreements.AgreementType, tbl_Customers.Address...
  15. Tinny

    Form Validation (Experts Needed)

    Private Sub EnableMe() If Payment Then Me.Payment.Enabled = True Me.Credit.Enabled = True Else Me.From .Enabled = False Me.To.Enabled= False Me.OK.Debit= False End If If From Then Me.From .Enabled = True...
Back
Top Bottom