Search results

  1. GPGeorge

    Proofing lineup order of library references

    What exactly is the error and error description?
  2. GPGeorge

    Inconsequential Query

    You didn't call out what I consider to be the primary benefit of this architecture. That is that a PowerApps app, linked to SharePoint Lists and running on a smart device -- phone or cellular-enable tablet, does not require an internet connection. Your ERP is not just online; it's available...
  3. GPGeorge

    Solved It takes too long to download data from server

    Good point. Essentially what you are passing here is very close to the structure of a Stored Procedure. CREATE OR ALTER PROCEDURE sp_UpdateCompanyType ( @iComp AS INT = 4, @iCompType AS INT = 2 ) AS BEGIN SET NOCOUNT ON UPDATE tblCompany SET CompanyType = @iCompType WHERE...
  4. GPGeorge

    Solved It takes too long to download data from server

    The data in views may or may not be editable either in SQL Server, via SSMS, or when linked in Access. It depends on how the view was created. The same is true of SELECT queries in Access, btw. The data returned by a SELECT query may be editable or not. I wasn't as thorough in discussing...
  5. GPGeorge

    Solved It takes too long to download data from server

    Um, while it is true that Pass Thru queries are read-only in Access, and that the term "Pass-Thru" means that the ACE engine is by-passed, I'm not sure the conclusion reached in your first statement is accurate. As you note, Access sees the linked view as just another table, and an Access query...
  6. GPGeorge

    Interfacing Access With Arduino Device

    I'm not suggesting you try what was described. I'm suggesting that, since you are embarking on a new direction of development, there might be useful information available in that discussion regarding interactions with IoTs.
  7. GPGeorge

    Solved Del All FK & PK Constraints

    I'm sure that you can't create relationships on fields of different datatypes. I just successfully created a query joining two tables on a tinyint field and a smallint field, though. It made no sense logically in this test scenario, but SQL Server didn't object, since both as integers...
  8. GPGeorge

    Interfacing Access With Arduino Device

    You might get some ideas from this YouTube video. It was a presentation on using and Azure IoT Hub with SQL Azure, but it has an extensive discussion of use of the IoT devices involved.
  9. GPGeorge

    Solved Code not save when at runtime

    I won't share all of the details about why I know this to be a true statement, but it does involve a significant volume of curse words and keyboard practice while retyping those code changes.
  10. GPGeorge

    Solved Del All FK & PK Constraints

    Oh, in that case, I truly believe you are wasting time and effort to save some space that doesn't need to be saved. I can definitely see doing something like that in a green field database where you don't have to manage existing architecture and data and the motivation of saving spaces is...
  11. GPGeorge

    Solved Del All FK & PK Constraints

    I too am curious about the need to convert the datatypes of fields involved in Foreign Key Constraints.
  12. GPGeorge

    Secure Storage Model for Microsoft Access: Stream-Based Encrypted Data Architecture(for discussion)

    Initiative: An organized effort by a group or groups to achieve a common goal. Trend: A prevailing tendency or inclination with no specified goals. What is actually happening with Access? Is it a trend or an organized initiative?
  13. GPGeorge

    Seeking a Moderator for the Moderators

    The situation has been greatly complicated by the recent censorship Online Safety Act laws in the UK.
  14. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    Thank you. You have indeed proven something, even though you probably didn't intend to do so. Perhaps someone does have time and the inclination to replicate the line numbering function in one of the commercially available Access tools (MZ Tools, VBE_Extras, and perhaps others) for you.
  15. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    And with that you just made my point :rolleyes:. You started out by asking other people to do the hard work of coming up with VBA code that replicates something already in existence. And you end by asking other people to do the hard work of trying to track done something that we suspect...
  16. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    One last time. Show us the examples of your contributions, please. Links are fine.
  17. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    Insulting other people is not the same as providing concrete examples to prove a point. This response falls under the same approach as the one which started this discussion: asking others to provide you with a way to create line numbers in VBA. You want the benefit of that tool, but expect...
  18. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    A link to one such contribution you have uploaded here would easily prove your point.
  19. GPGeorge

    Data model for recruitment database with reserve list

    Take a close look at Post #12, please.
  20. GPGeorge

    How can I create an Access extension for editing code following a particular key combination?

    Most of the people who participate in this forum are working professionals who have employers or clients to satisfy. Some of us are retired, though, and often look for time-filler projects to both contribute something to the Access community and to keep our skills as sharp as possible. Your...
Back
Top Bottom