Is there a tool that allows me to code for email template and see its Outlook layout real time? [closed] - outlook

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am trying to make an email layout cross compatible with all clients, but is getting slowed down because I have to use Outlook everytime I make changes. Actually it seems like the only method is to use litmus, so what happens is whenever I make changes to my code, I send a test email to my litmus, then only from there I can check the cross compatibility.
Is there a software/tool I can use to see the layout real time as how I code?
Thanks!

If you have Litmus, use Litmus Builder! You can code in one half of the screen and get updated previews of any client in the right every time you save. Worth the $$$ if you work on email regularly.
Another way is to use Microsoft Outlook. Microsoft Outlook uses a similar (if not same) rendering engine as Microsoft Word.
If you have a compiled HTML file of the email and have Microsoft Word installed on your computer, you can right-click the HTML file and Open With -> Microsoft Word to open the email file in Word. What you see should be very similar to Outlook.

Related

Alternative of espresso for windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Espresso has live preview feature which shows live changes of code as we write code.
I am searching for same feature in a tool for Windows?
Dreamweaver has that one, but doesn't support JS. Is there any other web editor or IDE?
The closest I know of is the IntelliJ platform (WebStorm/IntelliJ IDEA) with the live edit plugin. It works in combination with a Chrome plugin.
You can watch a demonstration of live edit in action here
Instructions for setting up the Chrome plugin are here.
Shameless plug: LIVEditor - the product name contains the word live, in order to emphasize its feature to show live html/css preview, which is, alone with the integrated Firebug-like html element inspector for showing applied css styles, the most important nature of this code editor.

How do I deliver a large amount of documentation in a portable format? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have a documentation set that I need to deliver to a variety of users. It is currently in HTML with a number of attachments with a total size of around 180MB. I have the following requirements:
It only needs to be viewable on windows.
The user must not need to install additional software prior to viewing the documentation over and above what is normally on the machine (MS Office, browser etc)
The entire set needs to be searchable (preferably including MS Office attachments)
(desirable) It needs to be distributable as a single file (.exe OK)
(desirable) It needs a compatible authoring tool
Any ideas on what would be a good way to do this?
Way out of my area of expertise, and it may not work with the office files, but Microsoft Compiled HTML Help looks promising.
One tool that we are considering to do this is TiddlyWiki which allows inline editing of the source and can be extended with plugins to look more like a traditional website and to provide better support for multi user editing.

IM clients (or plugins) with code formatter / highlighter [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Can anybody recommend an IM client (Linux / Mac preferred) that either support natively, or via a plugin the ability to format & highlight blocks of code that are pasted in chat windows? I'm constantly pasting and receiving blocks of code in my client (Adium at the moment) where I copy them out into an editor to perform the formatting to make it readable.
I know I can't be the only one that shuttles snippets of code around to others like this, so I figure someone must have done this already, but my searches are coming up with nothing. Please someone help me before I throw my hands up and just start another time-sink project myself :)
You could also take a look at http://collabedit.com/

Annotate code in VS 2010 without changing that code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have just started a new job, and am trying to familiarise myself with a large C# solution, of 330 odd projects. Ideally I would like to attach comments and questions to pieces of code without actually editing the code itself.
Is there a tool I can use to annotate C# source code without actually editing the code itself. Ideally I would like a 'bubble' type comment mechanism, similar to how MS Word shows comments in a a document.
you can add bookmarks to lines of files of a solution. In vs2010 there is a view that shows all bookmarks and you can give tem names and sort them in bookmarkfolders.
On studio 2010, with your desired Project open, hit "Ctrl+W, T" (or View->Task List). This window can both be used to view in-code comments (which is not what you want) using the //TODO: comment prefix, or to view your own independente "User Tasks" (view the dropdown options), and it is saved per project. With this list indicating your descriptions and bookmarks id... you can have a very efective freeway to what you want without ever changing source. Hope it helps.
It may well be overkill for your needs, but Atlassian's FishEye can be used to exactly what you're after - in the form of a source code review.
You could create more than one review, as your understanding of the code improves.
See https://www.atlassian.com/software/fisheye/overview. Note that it sits on top of a source control system (it supports Subversion, CVS, Perforce, Git, and Mercurial). Even if your code is not managed in one of these, it would be trivial to set one up for this purpose.
It also as the advantage of integrating your comments with those of other in your team ... and, of course, being usable for real reviews!

Alternative to Webbrowser control [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Has anyone found and used an alternative to the Microsoft Webbroswer ActiveX control with any success? The open source Firefox ActiveX version seems to be a dead project development wise and based on an old Firefox version.
Give a look to the GeckoFX Project, an open-source component for embedding Mozilla Gecko (Firefox) in .NET applications.
Written in clean, fully commented C#,
GeckoFX is the perfect replacement for
the default Internet Explorer-based
WebBrowser control.
(source: googlecode.com)
I just installed Microsoft's WebView2 NuGet Package named "Microsoft.Web.WebView2" and dropped the control on a Windows Form and gave it a source to navigate to:
//Build your own URL
string sURL = $"https://auth.tdameritrade.com/auth?response_type=code&redirect_uri={sCallbackURLEncoded}&client_id={sConsumerKey}%40AMER.OAUTHAP";
//Set it as the source
wvLogin.Source = new Uri(sURL);
BAM! It worked. I wish I had known this was available before wasting time on browser controls that do not package well or testing browsers that cost $800 or $1500 for a single licencse.

Resources