Results 1 to 9 of 9
  1. #1
    yrstruly is offline Competent Performer
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2024
    Posts
    122

    Form Display in Design View Only


    My form dissapeared, when i view it in Design view its visible, but not in Form view.https://drive.google.com/file/d/1NlW...ew?usp=sharing

  2. #2
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,938
    Is it a popup?

  3. #3
    yrstruly is offline Competent Performer
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2024
    Posts
    122
    Quote Originally Posted by CJ_London View Post
    Is it a popup?
    No, a regulr form

  4. #4
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,938
    Due to security concerns, I'm not prepared to go to your google drive. I will only look at db's/whatever uploaded to the site - go to the advanced editor (button next to the post quick reply button). Remove or obscure any sensitive data and and any tables/queries/forms/reports/modules not relevant to your question, then compact/repair and zip the file for uploading.

    You could show a screenshot of your form properties to show popup is set to no as that is the only reason I can think of where you could have this issue - unless you have code that hides/resizes/moves the form. Also be be clear whether you are using tabbed or overlapping forms.

    Without more information, I will have to drop off this thread. Others may be less concerned about security so perhaps someone else will be prepared to click on your google link.

  5. #5
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,652
    Not clicking on the link, but this may be on point:

    http://allenbrowne.com/casu-20.html
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  6. #6
    Join Date
    May 2018
    Location
    Living in Scotland UK
    Posts
    1,822
    Can you upload the record source of the Form?

  7. #7
    yrstruly is offline Competent Performer
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2024
    Posts
    122
    The reason was because of the join. I do the physical join in the Database Tools Diagram section.


    Original Query
    Code:
    SELECT DISTINCTROW TblLicence.Id, TblLicence.PlantID, Plants.Cultivar, TblLicence.Nr, Profile.Display, TblLicence.ConType, TblLicence.LicHolder, TblLicence.ConExpireDate, TblLicence.Renewable, TblLicence.Breeder, TblLicence.Upfront, TblLicence.Royalty, TblLicence.MonthPay, TblLicence.Importer, TblLicence.Comment, TblLicence.NextPeriod, TblLicence.PlantBreederRights, TblLicence.PbrExpireDate, TblLicence.Origin, TblLicence.FirstCom, TblLicence.PbrGrantNo, TblLicence.Trademark, TblLicence.FirstComPlace, TblLicence.Supplier, TblLicence.ConSignDate, TblLicence.RenewableDate, TblLicence.PBROwner, TblPlantsPrices.Royalty, TblPlantsPrices.LevyFROM ((TblLicence INNER JOIN Profile ON TblLicence.Nr = Profile.Nr) INNER JOIN Plants ON TblLicence.PlantID = Plants.PlantID) LEFT JOIN TblPlantsPrices ON TblLicence.PlantID = TblPlantsPrices.PlantID;
    
    Altered query, which does give an output, the newly created table(TblPBRVLInfo) does not have values yet so their columns are blank:
    
    Code:
    SELECT DISTINCTROW
        TblLicence.Id,
        TblLicence.PlantID,
        Plants.Cultivar,
        TblLicence.Nr,
        Profile.Display,
        TblLicence.ConType,
        TblLicence.LicHolder,
        TblLicence.ConExpireDate,
        TblLicence.Renewable,
        TblLicence.Breeder,
        TblLicence.Upfront,
        TblLicence.Royalty,
        TblLicence.MonthPay,
        TblLicence.Importer,
        TblLicence.Comment,
        TblLicence.AnnualRenewalDuty,
        TblLicence.AnnualPBRRenewalCost,
        TblLicence.AnnualPBRRenewalRequired,
        TblLicence.NewPBRVLCost,
        TblLicence.NextPeriod,
        TblLicence.PlantBreederRights,
        TblLicence.PbrExpireDate,
        TblLicence.Origin,
        TblLicence.FirstCom,
        TblLicence.PbrGrantNo,
        TblLicence.Trademark,
        TblLicence.FirstComPlace,
        TblLicence.Supplier,
        TblLicence.ConSignDate,
        TblLicence.RenewableDate,
        TblLicence.PBROwner,
        TblPlantsPrices.Royalty   AS PriceRoyalty,
        TblPlantsPrices.Levy     AS PriceLevy,
        TblPBRVLInfo.VL_ApplicationNo,
        TblPBRVLInfo.VL_ApplicationDate,
        TblPBRVLInfo.VL_GrantApprovalNo,
        TblPBRVLInfo.VL_GrantApprovalDate,
        TblPBRVLInfo.PBR_ApplicationNo,
        TblPBRVLInfo.PBR_ApplicationDate,
        TblPBRVLInfo.PBR_GrantNo,
        TblPBRVLInfo.PBR_GrantApprovalDate,
        TblPBRVLInfo.PBR_GrantExpiryDate,
        TblPBRVLInfo.PBR_EndOfSoleRight
    FROM
        (
            (
                (TblLicence
                  INNER JOIN Profile
                    ON TblLicence.Nr = Profile.Nr
                )
                INNER JOIN Plants
                  ON TblLicence.PlantID = Plants.PlantID
            )
            LEFT JOIN TblPlantsPrices
              ON TblLicence.PlantID = TblPlantsPrices.PlantID
        )
        LEFT JOIN TblPBRVLInfo
          ON TblLicence.PlantID = TblPBRVLInfo.PlantID;

  8. #8
    yrstruly is offline Competent Performer
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2024
    Posts
    122
    Quote Originally Posted by mike60smart View Post
    Can you upload the record source of the Form?
    Its in the same MS Access i shared with you. Query QfrmLicence and Form frmLicence.

  9. #9
    Join Date
    May 2018
    Location
    Living in Scotland UK
    Posts
    1,822
    That database has long been deleted as your structure made no sense and you would not listen to any advice.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 3
    Last Post: 10-26-2023, 06:06 AM
  2. Replies: 10
    Last Post: 02-06-2018, 02:37 PM
  3. Replies: 6
    Last Post: 05-09-2014, 09:03 AM
  4. Replies: 2
    Last Post: 06-26-2013, 12:13 PM
  5. Replies: 8
    Last Post: 04-29-2013, 11:23 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums