ms-access

How do I convert Excel files, then import to Access in one step? [closed]

十年热恋 提交于 2019-12-25 17:42:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I posted this question yesterday, but people advised me to ask again, with more detail. I have several (+1000) raw files that I need to convert, and eventually import into Access . I've written an Excel macro that will do that. It's fairly extensive, and has a great deal of operations, but the 'gist' of it is

Change navigation tab on “Navigation Control” of Access?

牧云@^-^@ 提交于 2019-12-25 17:40:03
问题 Here's my doubt, I have an Navigation Control called "navControl" that haves three tabs("Venda", "Metalização", "Injeção"), and I have one Check Box with three options, I need to change tab according the selected option. I think I need to use DoCmd.BrowseTo, but don't know how :/ Someone can help me? Thanks 回答1: You must set the Navigation Target Name to the name of the form each navigation tab opens in Properties/Data tab of the navigation control.. Private Sub YourOptionGroup_Click() With

Change navigation tab on “Navigation Control” of Access?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-25 17:39:03
问题 Here's my doubt, I have an Navigation Control called "navControl" that haves three tabs("Venda", "Metalização", "Injeção"), and I have one Check Box with three options, I need to change tab according the selected option. I think I need to use DoCmd.BrowseTo, but don't know how :/ Someone can help me? Thanks 回答1: You must set the Navigation Target Name to the name of the form each navigation tab opens in Properties/Data tab of the navigation control.. Private Sub YourOptionGroup_Click() With

Creating a database in Microsoft Access that is searchable only by certain fields

房东的猫 提交于 2019-12-25 17:16:10
问题 How would you create a database in Microsoft Access that is searchable only by certain fields and controlled by only a few (necessary) text boxes and check boxes on a form so it is easy to use - no difficult queries? Example: You have several text boxes and several corresponding check boxes on a form, and when the check box next to the text box is checked, the text box is enabled and you can then search by what is entered into said text box (Actually I already know this, just playing

How do I update an an Access database from a GridView in Visual Studio?

末鹿安然 提交于 2019-12-25 17:07:25
问题 I'm trying to update an access database when using a Grid View in Visual Studio 2010 but not having any success. Let me try and explain what I have. I have an access database with a table "tblConfirmedworkhours" which has fields "dateworked" & "confirmed". I can display the filtered table on my webpage with the edit/update links but the table won't update. Option 1: I would like (if possible) is to not have to click on the edit & update buttons, just edit the data on the screen (I'm thinking

Filter a Report based on user input Microsoft Access

痞子三分冷 提交于 2019-12-25 16:49:54
问题 My apologies if this is an easy/straightforward solution, but I am new to Access, and I have been having some problems with my reports. I have created a report template which I want to open a single page report based on a specific IDENT NO. All of the fields in the report are then generated from the associated IDENT NO. As it currently stands, when I open the report, it will create a single page report for each ID number in the Report Data table when opened. Instead, when the user is

How to Absorb a Keypress?

假如想象 提交于 2019-12-25 16:39:29
问题 On my form I have an edit control. I have set up a KeyDown event to detect when the user pushes enter , but I also want to detect shift+space so the user can clear the contents of the box. The functionality works - I can detect the keypress. Problem is that the space does not get absorbed and so the space glyph is still typed in the control. How can I absorb the keypress when I push shift+space ? Private Sub FindBox_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case

VLC Playing Embedded in MS Access 2013

白昼怎懂夜的黑 提交于 2019-12-25 16:24:54
问题 I want to embed VLC video player into one of my Access forms so that users can select a video they have uploaded and play it within Access. I found code from this website: http://workingwithaccess2007.blogspot.co.uk/2013/10/vb-embedding-video-player-using-vlc.html But the code which was given doesn't work now. It could be something to do with new updates in VLC which has caused the code to not work. Dim player As VLCPlugin2 Set player = VLC.Object Dim strURL As String strURL = "C:\temp\1.mwv"

Visual Basic, filter on most occuring in Acces Databse

空扰寡人 提交于 2019-12-25 15:22:31
问题 I just started with programming in Visual Basic 2015. And I'm facing this problem: I've made a database with Microsoft Acces 2010, the table I've made is called "notations" it looks like this. As you can see I have already 10 records in my database with 4 columns. What I would like to do is filter the most occurring from the third column which is "categorie". With the result, I would like to create a document. I really have no clue on how to get started with this so I really could use you

Access DSUM Issue

穿精又带淫゛_ 提交于 2019-12-25 14:47:11
问题 I am trying to use Dsum function in a query field to create subtotals of volume per each channel Exp1: DSUM("[vol_tot]","[TBLNAME]","[CH]") I have the following results: CH Exp1 10 200,000 20 200,000 30 200,000 I was expecting: CH Exp2 10 100,000 20 40,000 30 60,000 I'm trying to attain the same functionality as a SUMIF function in Excel... 回答1: The filter criteria argument is incomplete. Try: DSUM("[vol_tot]","[TBLNAME]","[CH]=" & [CH]) Domain argument functions can perform slowly in query