Microsoft access editing marcro - ms-access

I would like to edit one macro in a project but do not really know how to do it.
I wish to see the source code.. the macro is not visible if I press alt-f11.
Any suggestions?
Thanks!

Access macros are NOT VBA subs/functions, and thus can't be viewed in the VBA editor.
You're currently looking at all the code the macro contains, which is literally nothing.
Macros are made out of draggable blocks. The underlying code is AXL. You can see this question for how to edit and copy them.
Alternatively, you can click the Convert Macros to Visual Basic button to convert them to VBA code, but that's not very sensible if it doesn't contain anything.

I got the answer, just had to convert macro to vba..

Related

problem with visual studio code in syntax

I am a beginner in programming learning and I have a problem writing the code on Visual Studio. When I press the tap button to format and save, what you have modified using the tap button is canceled. Please solve it as soon as possible and thank you in advance.
If you referring to formatting the code, i suggesting you to use an extension called Prettier, it makes your code better by formatting it automatically for you, you can navigate to Extensions tab on the left sidebar then write on the search box "Prettier" install it then reload the application and it will work.
How to use: Just write the code and save it (CTRL + S) then Prettier will automatically formatting the code for you.

Onenote macro language command

I am looking for a way to either remove whole page using one note macro, or clear content of a specific page.
This is for a macro that will create summary page. Right now my macro creates new summary page every time. I would like to keep one page and keep "rebuilding" it with that macro, so I need to either remove or wipe old one.
Thanks!
I don't know what macro language you are using. If you are willing to dig into C# code, you can code up using the OneNote REST API. http://dev.onenote.com. Those operations you are talking about (updating/patching an existing page, or deleting/creating a new page) are possible.

Add Google Analytics Tracking Code to website created using Microsoft Word 2010

How do I add the Google Analytics tracking code to a website created through Microsoft Word 2010? I'll be tweaking the site through Word, so I want a solution that works through Word (not editing the HTML output through another program).
I know you're going to tell me that Microsoft Word is a bad choice as an HTML editor, but my collaborator insisted on it, so please don't respond if you can't help.
Get your code snipped (you have to create an account first),
register your site, add the code snipped to you code - you are ready to go.
But really...you couldĀ“ve pasted the code into word afterwards...and this is not directly a question for SO...you could have googled it...
https://www.google.de/analytics/

Windows Form to HTML

I was just wondering, did some research on internet as well, is there anyway to export a windows form which is coded in VB as HTML. Doesn't need to be directly I mean it can go over from excel to HTML or any other route which is possible. I just want my user to tick couple of check boxes and see the text which I retrieved from my database.
Thanks in advance.
You might want to try this one:
http://www.codeproject.com/Articles/15559/A-Windows-Forms-based-text-editor-with-HTML-output
There's nothing out that that I've seen that is a perfect solution.
I did see this interesting article on CodeProject which looks like it does a rough job of it, and might be sufficient.
However, if it's that simple, and you already know how to code WInForms, you could just bite the bullet and create ASP.NET pages. (Using WebForms instead ov MCV as it's more similar) The two programming/design models arean't really all that different.
there is a function in excel to export an datasheet to an HTML page.
SaveAs >>>> Html page or web page.
And the same goes for Word.
Good luck

Inserting select tag in Umbraco?

I'm currently working on a project using Umbraco and the client has asked for a drop-down menu with the states and once selected the cities in that state will be displayed.
When I'm in the text editor, it will save tables, but once I input a <select></select> tag or <option></option> tags and save the file and go back into it my coding will be converted to normal text. It doesnt seem to want to accept or is there a way to insert these, and if there is, is there a way to do it without creating a new doctype? The hours have been budgeted and I'm trying to find a quick fix if possible.
Thanx in advance.
Correction: It doesn't simply convert it to just plain text but the entire <select>/<option> tags will be completely gone and all that will remain is what was between the tags.
You cannot do this in the rich text editor, for this to work you need to create a macro (you have a choice: XSLT / Web User Control or Razor).
In said macro you will be able to render the dropdowns you want, if you're familiar with ASP.NET a user control will probably be most convenient, binding it to a datasource.
But it sounds like you're in over your head, as you haven't yet mentioned how you plan to post and save the form. You really should provide some more details on that.