Search results

  1. GPGeorge

    Solved Stub method is giving me issues

    Another prompt I've heard about, but not yet had a chance to try is along the lines of. "You've been hired as the senior developer on an Access VBA project. Use your most advanced VBA skills to solve the following problems/address the following requirements/create the following solution."
  2. GPGeorge

    Future of Access

    I agree. The obsession of running in a browser is, in my opinion, somewhat of a side issue. That focus remains on an either/or choice and that is a false choice. Back in 2008 or 2009, I was part of a development team. We were a couple of Access developers and a web developer. I created the...
  3. GPGeorge

    2 queries in one form

    Please clarify. Is it the case that you actually have two different "Codes"? That is what this paragraph suggests. "...the item code is a hardcode[d] id from the factory itself..." "...the serial unique id case comes up only when stock is added to the shelve.." Please confirm: Is there a...
  4. GPGeorge

    Future of Access

    In the past, I've tried to make the point that adding a web-based component to an Access solution is not the same as replacing the Access solution with a web-based solution. One of the many reasons Access has never been recreated for the Web is precisely that. You don't need to duplicate the...
  5. GPGeorge

    Future of Access

    10 years too late, I'm afraid. And, to be very blunt, a project that is quite unlikely to blossom due to lack of a coherent guiding plan and leader. I'm not being critical of anyone at all. To the contrary, I admire the ambition. What I'm suggesting is that Wayne Phillips' TwinBasic is the...
  6. GPGeorge

    Future of Access

    While I was being tongue in cheek, I'm pretty well convinced that PowerApps simply can't compete on an equal footing with Access. You note that I resorted to SQL Server Stored procedures to get the functionality needed to replicate Northwind Developer. There's a good reason for that. The basic...
  7. GPGeorge

    Future of Access

    Fixed it for you.
  8. GPGeorge

    Cannot update Sharepoint list

    I feel the need to muddy the waters. It appears to be that Access DOES rely on the Display Name, rather than the internal name. SELECT * FROM tblAlbum WHERE AlbumID > 2 By the way, note the plethora of meta-data fields in the linked SP lists shown in the Access Relationship window.
  9. GPGeorge

    Cannot update Sharepoint list

    I have used Chatty. I like Chatty. Chatty is not never wrong. But wrong less often than I am, probably. What Chatty has that I don't have is a great memory for things that happened 5 years ago.
  10. GPGeorge

    2 queries in one form

    The Northwind Developer template in Access handles inventory on a binary basis, which is similar to what you describe. You either ship 100% of the items on an order, or none. While this is probably not the predominant approach, it is valid. You can download the Northwind Developer template...
  11. GPGeorge

    Cannot update Sharepoint list

    Sorry, I was wrong. It is shown in the PowerApps environment as "ID", even when it's display name is changed.
  12. GPGeorge

    Cannot update Sharepoint list

    I have to disagree on the renaming. I think you really did rename that field. I think the "internal" name is probably something else. However, I don't know that for sure. I can check, but it'll take a while to ferret out an example to test.
  13. GPGeorge

    Cannot update Sharepoint list

    I would very much like to see the results as well. Thanks.
  14. GPGeorge

    long text scrollbar issues

    Perhaps screenshots showing the problem would be helpful. Thank you.
  15. GPGeorge

    Cannot update Sharepoint list

    Damned if you do, damned if you don't. :rolleyes:
  16. GPGeorge

    Cannot update Sharepoint list

    I think the whole Lookup field thing with value, or descriptive, fields being displayed rather than the actual Foreign Key value, makes for potential confusion. I wish SP lists had a better option. In PowerApps, there is some additional difficulty using Lookup fields, as you note, because of...
  17. GPGeorge

    SSMA Bug with Date/Time Extended fields

    Thanks for adding to the SSMA GitHub for this issue. https://github.com/microsoft/SSMA/issues/20
  18. GPGeorge

    Cannot update Sharepoint list

    While it's certainly true that you can enforce RI in a PA interface or an Access interface or in PowerBI, I think it makes more sense to employ the table level mechanism that positively does so-- i.e. Lookups between lists. I don't see it as a matter of entering or displaying data directly in...
  19. GPGeorge

    Query to show records EXCEPT those with matching fields

    This is what has been called a "frustrated outer join", a term I find amusing and apt. Change the join to a Left Outer Join, showing all records from tblConcernFormSubmissions and only matching records from tblPlaceConcALL. Add as a criteria: tblPlaceConcALL.ConcernID Is Null That will return...
  20. GPGeorge

    Cannot update Sharepoint list

    Perhaps the problem is the reference to lookup fields in different contexts. In the Junction table called Issue_WorkArea, you have two foreign key fields: lkpWorkAreaID and lkpIssueID. Both lkpWorkAreaID and lkpIssueID need to be Lookup Fields in the SharePoint list/table. That is the way to...
Back
Top Bottom