Recent content by kentgorrell

  1. K

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    Greg Regan has done some excellent presentations for the Access User Group on modern form design, just search on YT for "access user groups greg regan". He preseneted yesterday on using SyncFusion's (free) Metro 5 to create icon images for this purpose. I hope to have that edited and posted in...
  2. K

    Where do I find PKs for server views?

    Thanks Minty, OK, so the View's "Primary Key" is just an index not a constraint. Or is it? Why do they call it a PK? Why don't they just call it a unique index? Why is the index name prefixed with double underscores (another question entirely). We know that when you create a PK constraint in...
  3. K

    Where do I find PKs for server views?

    I'm about to do a thorough testing on Server Views, They've been a bit flaky ever since the RefreshLink issue. I worked my way around all that at the time and everything works... mostly. This week I imported all my objects including tdf links into a fresh container. After that I had one message...
  4. K

    Drag and Drop interface is it possible

    You can do this using GDI. see Access Gantt Chart for a demo. This demo is a Gantt chart but pivot and the same principles apply to a Kanban board
  5. K

    Solved Indexing a foreign key in the child table

    Wow, I just had a flashback to when I first learned about concatenation with + and &. I recall when and where I was. I was on a beach. It was 1994. Same time I learned about 'Or Is Null'. I just can't remember the name of the book. More of a booklet as I recall. I keep thinking Speed Ferret but...
  6. K

    Solved Indexing a foreign key in the child table

    good point although I'm so far not having an issue with Chr(!0), Chr(30) being embedded. With two fields I used to concatenate them with a vbNewLine anyway and use the control's Can Grow on reports to handle layout. Do you have a better method to handle printing when you have two fields but...
  7. K

    Solved Indexing a foreign key in the child table

    I'm rather inclined to use one address field which is a free for all that may include Street Name, Street Number, Building Name, PO Box or whatever. This field allows multiple lines. Then separate fields for City, Post/Zip Code, State and Country which are validated from lists.
  8. K

    Solved Indexing a foreign key in the child table

    If you can't modify them using VBA then I can't use them. In my applications, schema modifications are all done by code. No-one manually hacks into a BE to modify objects. That would be contrary to the principles of SDLC. Access forms do some pretty amazing but unintuitive things. LIke allow...
  9. K

    Solved Indexing a foreign key in the child table

    so when he said "Relationship" he really meant "Join". a relationship is a database constraint while a join is just SQL and can be adhoc much easier to follow if we, as professional developers, used the correct nomenclature.
  10. K

    Solved Indexing a foreign key in the child table

    I don't get what you mean, can you give an example?
  11. K

    Solved Indexing a foreign key in the child table

    I was just thinking about all the things to consider when migrating. For example, An Access index has a boolean option for Ignore Null while in SS you need to apply a filter to the index (I think SSMA now does that) but you should only do that if the column allows nulls. FKs in SS have...
  12. K

    Solved Indexing a foreign key in the child table

    and by "connections" you mean relationships? I really only work with SQL Server dbs so I haven't used Lookups since Access Web Apps. I'd kinda forgotten about them. Do they create some kind of relationship in the background? (For Access tables. Obviously not applicable to SS) or are they visible...
  13. K

    Solved Indexing a foreign key in the child table

    I'm trying to think of when you might want a relationship but not use RI. I guess maybe to improve join performance while ignoring orphans?
  14. K

    Solved Indexing a foreign key in the child table

    Yes it should but then there are lots of things that the SSMA does now that it once didn't. FYI: while following your advice to remove explicit indexes where an implicit index already exists for a FK, I found one interesting anomoly. When trying to delete one index (in table design view) I got...
  15. K

    Missing SQL Server Logs

    Tip: for testing you can use the Developer edition of SQL Server rather than Express. It's free but has all the functionality of a paid edtion, it's just the license does not allow for its use in production.
Back
Top Bottom