Use a File Dialog in Microsoft Access

  Рет қаралды 30,050

codekabinett.com/en

codekabinett.com/en

Күн бұрын

Пікірлер: 51
@praetor7063
@praetor7063 2 жыл бұрын
I can't understand how you have only 4k subscribers. For me it's the BEST VBA channel.
@davegoodo3603
@davegoodo3603 8 ай бұрын
Thank you Phillipp, so nice to get good content from you. I don't know why I look anywhere else. Much appreciated.
@sheepchild
@sheepchild 5 жыл бұрын
Got right to the end but doesn’t run the import bit just does the pop up message how do you do the final link to the import button? To make the import actually import and do the updates. Am I just missing something?
@johandegraaf1458
@johandegraaf1458 2 жыл бұрын
I'd really like a Video to tie this series together. Essentially a tutorial on using the dialogue box to execute an Update/Append from a CSV file
@codekabinettcomen
@codekabinettcomen 2 жыл бұрын
This is a good idea. However, I'm not sure if I will do that anytime soon.
@stephenheusz3236
@stephenheusz3236 4 жыл бұрын
Thanks Phillipp. Very clear and concise and explained very well. How about a video tutorial on how to use a file dialog box to save a file?
@codekabinettcomen
@codekabinettcomen 4 жыл бұрын
Thank you for the feedback! I'm not sure about doing a video on the save dialog. It will be either very similar to this one or I would need to do the WinApi dialog, which is challenging for many viewers.
@rskipworth
@rskipworth 4 жыл бұрын
Thanks Phillipp - These are really great for an old guy trying to pick this up again!!! Danke!!
@SilkeJuppenlatz
@SilkeJuppenlatz 3 жыл бұрын
Awesome, thank you. I'm trying to build a hobby database with multiple views of a model figurine, but didn't want to type in every single image path. Hoping I can get this to drop the value into a table, so I can use that table to call the images and display them on a form. :)
@altunhasanoglu2863
@altunhasanoglu2863 4 жыл бұрын
Thank you for clean expalantion. You give explanation of ties between codes and it helps us understand clearly
@bumpersmith
@bumpersmith 6 жыл бұрын
You have a great approach to the way you explain a topic and your topics as far as I know are unique and show the workings of VBA that I did not already consider. Thank you and I look forward to future videos from you.
@johnclark851
@johnclark851 6 жыл бұрын
Another excellent video Philip. I shared this on an Access forum today for someone who was asking how to do something exactly like this. Have you considered doing one on text parsing? Maybe with the use of Regular Expressions?
@adammitchell2265
@adammitchell2265 6 жыл бұрын
I think that person may have been me, John! Thanks for a very well explained series Philip; I've just subscribed now.
@codekabinettcomen
@codekabinettcomen 6 жыл бұрын
Thank you for sharing! I will think about String parsing.
@Jason-gl7ny
@Jason-gl7ny 3 жыл бұрын
Just like Paul Knights comment; You forgot to mention 2 things: 1) how to connect the Import file to a button, and 2) how to change the import procedure to the actual import, not just showing the text box. Otherwise, excellent!
@felipescherer6678
@felipescherer6678 Жыл бұрын
Clear and simple explanations. Very usefull also. Thanks a lot for sharing!
@PJTarver
@PJTarver 3 жыл бұрын
Genial! Klar und leicht zu verstehen. Sehr empfehlenswert.
@mlaffey4026
@mlaffey4026 4 жыл бұрын
Thanks for video, i got the file dialog working.
@Nairot
@Nairot 3 жыл бұрын
Thank you and keep up the great work. You helped me so much.
@seekknowledge2714
@seekknowledge2714 6 жыл бұрын
Thanks Phil, that was awesome :) would love to see more of your videos
@codekabinettcomen
@codekabinettcomen 6 жыл бұрын
Thank you! I will record more as soon as I find the time.
@leonshears6925
@leonshears6925 3 жыл бұрын
Very good!!! And almost what I was looking for - but it is clearly an area in which you are very knowledgeable. I would like to know how to add a button (I can do that!) to a form which takes the user to a folder into which the user can paste an image. I can use "hyperlink" to get to the folder - but the folder is in read-only and will not allow the user to past an image. I know it must be "doable" and I keep trying but some of your magic would really help! Leon
@dmitriydemidov9613
@dmitriydemidov9613 3 жыл бұрын
Thank you very much Philipp
@MrMeLaX
@MrMeLaX 4 жыл бұрын
Where is a previous video? Didn't found it...
@apmastenbroek
@apmastenbroek 5 жыл бұрын
Thank you Philip for al your videos, the are quite clear and useful.
@johndavy3820
@johndavy3820 3 жыл бұрын
Thanks for a great video. You are amazing! John
@thiruthiru1
@thiruthiru1 6 жыл бұрын
Great job. I like your video, very useful, precise and to the point.
@ramprakashmaurya3236
@ramprakashmaurya3236 2 жыл бұрын
Very very nice
@martinbrien9104
@martinbrien9104 4 жыл бұрын
Very good.. and clear, thanks..
@sheepchild
@sheepchild 5 жыл бұрын
Or even better is there a finished, file with all this in and working?
@CarlosPereira1973
@CarlosPereira1973 4 жыл бұрын
Thank you for the explanation
@adammitchell2265
@adammitchell2265 6 жыл бұрын
Philip; If allowmultiselect = true what would then be the .selecteditems index to allow multiple filenames to be chosen?
@codekabinettcomen
@codekabinettcomen 6 жыл бұрын
SelectedItems is a collection, each item in the collection represents one of the selected files. You need to loop through the collection accessing all items from 1 to SelectedItems.Count to get all the selected file names.
@seekknowledge2714
@seekknowledge2714 6 жыл бұрын
Adam, in this dialog box you only have one text box to hold the chosen file name ( one file only)... So, you wont need multiple files to be selected file .. you only need one file.. in case of allowmultiselect = false you only have one file.. which index is always 1 so this is the one you need for the dialog box form example.... However, in case of allowmultiselect = true the user may select multiple files which all will inside the SelectedItems collection.. you will then need to choose only one of them.. That will be unnecessary and confusing .. so do not allow multisellect in this case where you only need one file.. *allowmultiselect = true* is used in other scenarios where you need to process many files, and in that case you use a loop to iterate through the SelectedItems collection items starting from index *1* until index *SelectedItems.count*
@adihalili4953
@adihalili4953 4 жыл бұрын
thanks Philipp I hate VBA and you saved the day
@nickpapastefanou7741
@nickpapastefanou7741 4 жыл бұрын
Very detailed video, but i cant find "MS office database engine..." I have 64bit (that must be the reason) Access 2016 , so i get an Error when trying to run it. Any suggestions?
@codekabinettcomen
@codekabinettcomen 4 жыл бұрын
This is one of Microsoft Access´ core libraries and it should be installed. Search for ACEDAO.DLL (It should bein C:\Program Files\Common Files\Microsoft Shared\OFFICE16\). If you can find it there must be something wrong with out installation. Try to repair the installation.
@nickpapastefanou7741
@nickpapastefanou7741 4 жыл бұрын
@@codekabinettcomen Thank you very much for your response! Vielen dank noch Einmal für das video!
@zstudy1
@zstudy1 4 жыл бұрын
how can i keep alot of pdf files linked in database
@metrosierra5718
@metrosierra5718 5 жыл бұрын
Thanx my dear, simple, clear and useful keep goin'
@lokeshswarnkar3112
@lokeshswarnkar3112 4 жыл бұрын
Dear I also create the same one but not get me.txtfilename.value pls share the file
@alencepoudel6446
@alencepoudel6446 4 жыл бұрын
Check the name of the dialogue box, it should be sth different in yours. Replace that with txtFileName
@akokohjoel9854
@akokohjoel9854 3 жыл бұрын
Does it work in ms access 2010?
@codekabinettcomen
@codekabinettcomen 3 жыл бұрын
Yes. I think these new dialog was added with Access 2007.
@chajri
@chajri 6 жыл бұрын
How to open crystal report 11 with form access. Thanks
@codekabinettcomen
@codekabinettcomen 6 жыл бұрын
I'm not sure if I understand this question. My knowledge of Crystal Reports is very limited. I think there is a Crystal Reports ActiveX Control, You could probably use this control to open CRs and display them on an Access Form.
@jean-lucmelchior5350
@jean-lucmelchior5350 4 жыл бұрын
Merci Philipp, même en anglais j'y suis arrivé
@SunilKumar-uv6zu
@SunilKumar-uv6zu 6 жыл бұрын
hi are you uploading more videos? ?
@codekabinettcomen
@codekabinettcomen 6 жыл бұрын
Sunil Kumar, yes I will be uploading more videos. There is no fixed schedule though, yet.
@vilastonape192
@vilastonape192 4 жыл бұрын
Sir please create video unbound master detail form
@codekabinettcomen
@codekabinettcomen 4 жыл бұрын
Not sure about this. A detail form displaying multiple records unfortunately has to be data bound.
How to Use a File Dialog in MS Access to Allow Users to Pick a File or Folder
9:03
Sean MacKenzie Data Engineering
Рет қаралды 13 М.
Create a Database Launcher that Opens Other Microsoft Access Databases
14:34
Computer Learning Zone
Рет қаралды 6 М.
Бенчик, пора купаться! 🛁 #бенчик #арти #симбочка
00:34
Симбочка Пимпочка
Рет қаралды 3,1 МЛН
How I Turned a Lolipop Into A New One 🤯🍭
00:19
Wian
Рет қаралды 10 МЛН
哈哈大家为了进去也是想尽办法!#火影忍者 #佐助 #家庭
00:33
火影忍者一家
Рет қаралды 126 МЛН
Access - How to log the Windows Username
12:38
codekabinett.com/en
Рет қаралды 27 М.
VBA - File And Folder Dialogs
18:44
D Pineault - Tech, Programming and more
Рет қаралды 1,4 М.
VBA Tip: Select File or Folder using FileDialog in Access (cc)
7:47
How to store and open ANY PC Files in Microsoft Access
26:40
DataTechs Tutorials
Рет қаралды 15 М.
Import CSV Files into Access - pt1
23:10
codekabinett.com/en
Рет қаралды 31 М.
How To Log User Activity In Access 2013 🎓
27:13
Programming Made EZ
Рет қаралды 118 М.
How to Extract Files from an Access Attachment with VBA
30:52
codekabinett.com/en
Рет қаралды 8 М.
How to Merge Multiple Microsoft Access Reports into One PDF File or Print Job
28:26
Бенчик, пора купаться! 🛁 #бенчик #арти #симбочка
00:34
Симбочка Пимпочка
Рет қаралды 3,1 МЛН