Search results

  1. SHANEMAC51

    Solved Trying to figure out how to start new column in a report after a given amount of records

    137 entries in font 8 fits into the page, it is necessary to somehow still try students by classes in 3 columns, although this can apparently be implemented without an additional field, since there are clearly less than 100 people in the class (obviously it will fit into the page)
  2. SHANEMAC51

    Solved Trying to figure out how to start new column in a report after a given amount of records

    using an example of 137 rows, adding a service field to the table for grouping, taking into account the possible extension = yes, I got an option with setting the number of records in the column
  3. SHANEMAC51

    Continuous form total not working

    somehow I doubt that the form has a footer - it's not a report, after all there is 1-title 2- note in them you can put the summation of fields from the data area (for example debeto)
  4. SHANEMAC51

    Solved Trying to figure out how to start new column in a report after a given amount of records

    lay out an example of a database with a report in 1 column , I need to understand if it differs from mine 3-4 record
  5. SHANEMAC51

    Convert String to Numeric

    it is unlikely that the footer sees the fields of the subordinate form the final field should be in the note of the subordinate form
  6. SHANEMAC51

    Solved Search last word in a string

    Private Sub test01() Debug.Print SecondLastValue("Abit Khind, Akola, Ahmadnagar") Debug.Print SecondLastValue("Bhor, Shiroda, Akola,, Ahmadnagar") Debug.Print SecondLastValue("Akola, Ahmadnagar") Debug.Print SecondLastValue("Ahmadnagar") Debug.Print SecondLastValue(Null)...
  7. SHANEMAC51

    Solved Trying to figure out how to start new column in a report after a given amount of records

    I would like to decompose the printout into 3 columns. 1 - if the elements are placed horizontally, a standard report is sufficient, without code (Fig. 1) 2 - if vertically, then you will have to write program code (Fig. 2)
  8. SHANEMAC51

    I want to create 3 queries from 3 tables

    these are problems due to the DOUBLE data type , they are visually the same, but not equal in reality (a form for comparing 2 tables)
  9. SHANEMAC51

    I want to create 3 queries from 3 tables

    it depends on the conditions of merging tables ON Tb1.GT = Da.C1 ON Tb1.GT = Da.C2 ON Tb1.GT = Da.C3 ON Tb1.GT = Da.C4
  10. SHANEMAC51

    I want to create 3 queries from 3 tables

    Query Q_tb1 SELECT Tb1.MaID, 1 as ztyp,Da.Ngay, Tb1.GT AS A1 FROM Tb1 INNER JOIN Da ON Tb1.GT = Da.C1 UNION SELECT Tb1.MaID,2, Da.Ngay, Tb1.GT FROM Tb1 INNER JOIN Da ON Tb1.GT = Da.C2 UNION SELECT Tb1.MaID, 3,Da.Ngay, Tb1.GT FROM Tb1 INNER JOIN Da ON Tb1.GT = Da.C3 UNION SELECT Tb1.MaID,4...
  11. SHANEMAC51

    Query Returns Applicable Price Based on User Criteria

    I always use a ribbon form 1 -the headers are fully visible 2 -green search fields strictly above the data fields 3 -you can set the selection conditions in any combination 4 -I do not let the user spoil something (yellow fields are closed from correction) 5 -when clicking on the selected line...
  12. SHANEMAC51

    Strange Gremlin in Search Field

    " WHERE TBL_Client_Basic_Info.[First Name] Like "'*" & vSearchString & "*'" & _ " Or TBL_Client_Basic_Info.[Last Name] Like "'*" & vSearchString & "*'" & _
  13. SHANEMAC51

    Strange Gremlin in Search Field

    Private Sub SearchFor_Change() 'Create a string (text) variable Dim vSearchString As String 'Populate the string variable with the text entered in the Text Box SearchFor vSearchString = "" & SearchFor.Text
  14. SHANEMAC51

    Strange Gremlin in Search Field

    ''with this code , it works ''''Populate the string variable with the text entered in the Text Box SearchFor searchstring = "" & Search For.Text ''at the same time - does not work normally 'Populate the string variable with the text entered in the Text Box SearchFor searchstring = "" &...
  15. SHANEMAC51

    A Better Solution to Cascading Comboxes?

    therefore, in such cases, I do not use a standard formulation, but a subordinate form with an independent search for any part of the name otherwise, how to find a capacitor of size 15 out of 1500 candidates in different categories or a loop from 100 to 120 out of 970 possible the dimensions...
  16. SHANEMAC51

    Solved How to obtain the value of the first column in report?

    the report does not use query sorting, so you need to 1- set sorting by data/time field on the grouping button 2 the result in the PP inscription uses the data of the first page entry, the code is in the figure, specially made 2 pages of the event - formatting the header
  17. SHANEMAC51

    Strange Gremlin in Search Field

    I meant the event Private Sub ShipRegion_KeyPress(KeyAscii As Integer) Dim strCharacter As String ' Convert ANSI value to character string. str Character = Chr(KeyAscii) ' ' ' ' Convert character to upper case, then to ANSI value. KeyAscii = Asc(UCase(strCharacter)) End Sub
  18. SHANEMAC51

    Strange Gremlin in Search Field

    whatever the code is - why is there only one letter, what is it guilty of, there may be a handler for the characters being entered
Back
Top Bottom