Search results

  1. G

    Vb.net 1st real attempt.

    Almost ready to throw in the towel I've tried really hard to learn VB.NET and gain it as a skill set. I'm starting to lose faith that this is a good direction for a part time programmer (<5 hours per week). I've worked for months now, working through an online tutorial, and a vb.net...
  2. G

    Access 2016, any useful new features for vba or desktop use?

    I noticed that in this link below, they focus on templates and sharepoint/web stuff. https://support.office.com/en-us/article/What-s-new-in-Access-2016-76454345-f85d-47af-ace1-98a456cb3496 I guess I'm happy nothing is deprecated...
  3. G

    Access 2007 subdatasheet form to Visual Studio 2015 VB Windows Form App

    SkyCraw, Did you resolve this? I'm starting to feel like VB.NET just isn't worth the extra effort....
  4. G

    Vb.net 1st real attempt.

    almost there....I need this code to fire every time the parent record changes on the form. what form event fires to accomplish this?
  5. G

    Vb.net 1st real attempt.

    Hey everyone, Thanks to all who responded. I've got this to work now. This thread is what I was missing: https://www.syncfusion.com/faq/1144/i-get-the-error-system-comobject-when-using-recordset For the benefit of the forum, here's my working code: Private Sub FillAttachments()...
  6. G

    Vb.net 1st real attempt.

    Thank you CJ, your search came up with some I hadn't. Following one of the examples I came up with the following code: Dim dbe As New DBEngine Dim db As Database = dbe.OpenDatabase("S:\Gary\MS Access\ACS Engineering Changes\ACS Engineering Changes_beVS.accdb") Dim sSQL As...
  7. G

    Vb.net 1st real attempt.

    I've decided to try and learn VB.net, using VS community 2015. After running through some of the example apps such as Picture Viewer, etc. I decided to take my simplest access application and try and duplicate it in VS. This app has only 3 tables, minimal VBA code, and keeps track of our...
  8. G

    Most Efficient Query

    Those are the main fields yes, but I've included two more fields, a comments and a timestamp.
  9. G

    Most Efficient Query

    I have an application I'm creating to track engineering changes. It has a junction table, joining a "tags" table, and the "events" table. I need a search function that will allow them to search for events that are tied to specific tags the user chooses to search. So, to clarify, the user...
  10. G

    Create Form to add "Tags"

    Much better than what I was hoping for....Thank you Plog!!
  11. G

    Create Form to add "Tags"

    OK, I was looking for a Listbox....got it now. Plog, I'm interested in your approach. If I understand correctly, I could create a continuous form from my junction table, add it to my main form by linking the ID's, then simply add the tags that make sense right there? Wow, seems easy...
  12. G

    Create Form to add "Tags"

    :banghead: This seems so simple. I'm trying to create a form with two visual "Boxes, and a button in the middle. The left Box pulls the available "Tags" out of a table, then the user can select what ones apply to this particular record. Choosing the button "Pushes" the selection over to...
  13. G

    Pinewood Derby Db

    I've volunteered to look into building a database to house data for a boy scout pinewood derby event. I'm looking forward to the challenge, but the one thing that'll be completely new to me is trying to interface with some kind of timer coming off the track. Does anyone know how or what can...
  14. G

    Connecting to SQL CE Files (.SDF format)

    Has anyone had any luck connecting to these databases? Our Engineering software creates them for each work order it produces, and I'd like to pull information out of them. It's an MS SQL Compact edition file. I would likely prefer to connect via VBA, as the connection will be dynamic in my...
  15. G

    Two dbs, with a common be db...is this trouble?

    Jdraw, I'm sure you don't remember, but you were one of the first people to help me hone my VBA skills on here. It was much appreciated! Anyways, here's a thread following my challenges and finally resolution on the CDO method(?)...
  16. G

    Send Email with CDO

    Ok, I've got it straightened out now. I needed to go into my gmail settings and allow less secure apps. I also had some trouble with the code above. For it to work for me, I needed to change it to as shown below...
  17. G

    Two dbs, with a common be db...is this trouble?

    Gemma, Thanks for your suggestion...To be honest, I still have no idea what caused the issue. I can say this; I changed my "SendEmail" Function in both programs from an outlook automation to using the CDO method, and they are running fine...I'm pretty sure it had nothing to do with Task...
  18. G

    Send Email with CDO

    Fenhow, Is this still working for you? I'm trying to email directly through my access app like this in gmail, but I'm getting an error, and gmail is telling me this is not a "modern" application so it won't accept it. I'm running access 2010. Did you need to add any references? I've...
  19. G

    Two dbs, with a common be db...is this trouble?

    For the record, I'm still having issues with this. For weeks, both programs have been happily running as they should. Yesterday, I went in and made a quick change to app#2 (changed an email address in the code). app#2 has been saved as just a .accdb file, and I continued with that. Just...
  20. G

    Cloud App syndrome?

    Minty, We're using SQL Express now for our Engineering Data...The ERP is actually Sybase, but we connect fine using ODBC. What is IIS? (googling now)
Back
Top Bottom