Does anybody have a release version (executable) of plugin registration tool for CRM 4.0 - dynamics-crm-4

I know, for CRM 4.0 we have a C# project and we need to build it for executable, but I am unable to build it at my side.
So If anybody have a built executable then please let me know.

That's weird that you can't build it. But you can download it here - https://1drv.ms/u/s!AqRkf0rNSz72hohp2WnLe1mx4mMmog

You may want to take a look at XrmToolBox by Tanguy TOUZARD. The latest version allows you to enable the plugin registration tool as a plugin (along with any number of other really useful modules!)

Related

Building a desktop application in UI5 environment using HTML5 elements

I am beginner in sapui5. My requirement is to build a Desktop application in SAPUI5 environment using HTML5 elements. What IDE can I use to build that. Please refer me some links which help me in that.
Thanks in advance.
First get Eclipse Juno... then-
Go to Help > Install New Software
Select SAP Development Tools For Eclpse Juno
Install.
All the best...
I´d recommend you to use Eclipse IDE for Java EE Developers since it supports SAPUI5 very well.
To get the SAPUI5 Tools available in your Eclipse IDE you can follow the UI5 Setup guide.
In addition I´d recommend you to setup auto completion for SAPUI5. This is described here.
If you like to have jQuery auto completion as well you can take a look at this post.
UPDATE:
If you prefer to develop with Sublime Text you can have a look at SublimeUI5, too.

How to create a PPAPI plugin for Google Chrome in Windows?

I am new to PPAPI development and have downloaded the already examples from here
However, even after coming across the documentation,
I am not able to build the project.
I have Microsoft Visual Studio 2010, Windows OS and Chrome:30.0.1599.65
I understand that once a dll is created, using the regsvr32 command will register the plugin, although getting the dll, even with available code, seems tough for me. Any help for building the dll is appreciated.
You will want to start here to download the and set up the SDK: https://developers.google.com/native-client/sdk/download
This page will take you through how to build and run the examples: https://developer.chrome.com/native-client/sdk/examples
This page goes over how to actually create your own plugin: https://developer.chrome.com/native-client/devguide/tutorial/tutorial-part1
And then you should read this entire section to code and structure your application: https://developer.chrome.com/native-client/devguide/coding/application-structure
If you need any third party libraries be sure to check here: https://chromium.googlesource.com/webports
Edit: Forgot to mention that you will want to use the same version of the pepper api as the version of chrome you're running (in this case pepper_30). Also, you have to use the NaCl toolchain (one of either glibc, newlib, or pnacl); you can't use the Visual C/C++ toolchains. I recommend trying pnacl now that it is available, as that is by far the most cross platform version, but if you run into trouble, you'll probably want to use the newlib toolchain as it has better support.

Best Desktop Deployment technique for small Java applications

I am planning to develop a GUI Frontend for mixminion in java using swing(it would be something very simple nothing big). After making it what would be the best way to deploy it on windows for average users who dont even know whats java(leave alone JRE).So asking them to separately download JRE is not an option. I also want to keep the download size to minimum coz it will downloaded through internet so i cannot bundle JRE with installer.
Using Jet to compile it into a native code is not an option bcoz its not free.
Any suggestion would be greatly appreciated.
Thanks
If your really need to create a native app, the GNU Compiler for the Java can produce native machine code. I have no experience using GCJ and the latest news on the website is from late 2009. So this advice comes without warranty or guarantees... However if want to try:
http://gcc.gnu.org/java/

Where can I find a free xform editor?

I am new to xform. I have a project and I have no idea on where to write my code. So any help? (I am working on windows XP SP2).
Try a search for IBM Visual XForms Designer. it is a plug-in for eclipse.
add this site to ur software update site in eclipse
http://awwebx04.alphaworks.ibm.com/ettktechnologies/updates
and install it.
Edit by #tostao: Now it is IBM Forms and it's not free.
Is this what you're looking for: Oryx: XForms
One possible editor:
http://build.opendatakit.org/
but it is not fully functional
Try this - an open source client-side implementation, or this -XForms processor allows developers to use XForms markup to create interactive web applications.

Any example of writing an NPAPI plugin in Linux?

I need to write a browser plugin to communicate with another process, and it seems I have to use NPAPI plugins. Is there any example or open source NPAPI plugin I can refer to?
Many thanks for your reply.
Summary of answers
http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/
http://www.firebreath.org/
http://code.google.com/p/nixysa/
http://code.google.com/p/npapi-file-io/
2 and 3 are both frameworks to make plugin development easier.
I found one example at
http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/
you could also use the open source FireBreath plugin framework; they are nearing a 1.0 release for windows only, but it would not be hard to port it to linux; mac os shouldn't be bad either, but it will take a little work to get CMake to generate the correct bundle type =]
Yes, I am one of the primary maintainers, so I'm a bit biased. You can also find some good general information on how NPAPI works on my blog, starting here:
http://colonelpanic.net/2009/03/building-a-firefox-plugin-part-one/