following tutorial but not giving me the options it should - asp.net-mvc

i'm following the http://skywalkersoftwaredevelopment.net/blog/writing-an-orchard-webshop-module-from-scratch-part-3 tutorial word for word but there is no option for me to enable or disable SkyWalker.Webshop.
I have done as it asks, created the 'Skywalker.Webshop' folder inside the 'modules' folder. delete the class1.cs file and add the Module.text file.
However when I load the application there is no option in the modules/features page that allows me to enable or disable webshop (why does it not appear)
anyone have any idea as to why?
Thanks

according to what mentioned in the tutorial :
Orchard requires that your module exists physically in the Modules directory.
make sure you have supplied right directory when creating class library, cause visual studio uses most recent directory supplied for project of type class library when you attempt to add new class library to orchard solution.
hope this help you out.

Maybe try it in another way:
Using command line tool (Orchard.exe under bin folder)
type the following
feature enable Orchard.CodeGeneration
Then,
codegen module Pluralsight.Movies /IncludInSolution:true
Hints:
use "help commends", "help codegen module"
to help you understand the command line.

Related

Add a jar file to my Xamarin project

I am wanting to add the "universal-image-loader jar" file to my Xamarin project and am not sure what I need to do. I have had a look at this resource but would still like some help please: itexico.com/blog/bid/100447/Android-Wear-Developer-Preview-Using-Xamarin-Jar-Binding
Here is what I have done so far:
Downloaded https://github.com/nostra13/Android-Universal-Image-Loader
Created a folder called "Jars" in the root folder of my Xamarin project
I have added the "universal-image-loader-1.9.2-with-sources.jar" file to the "Jars" folder
I have set the build action to "embedded resource" for the "universal-image-loader-1.9.2-with-sources.jar" file
I have successfully build the project
I still cannot use the ImageLoaderobject in my application. I cannot resolve a ImageLoaderobject and am not sure what else I need to do.
May I please have some help?
Thanks in advance
I'd suggest you use Java Bindings Library for that.
What you need to do is to add a project to your solution of type "Android Java Bindings Library" you DON'T need to create Jars folder it is created in the new project by itself. Add your jars there. On your startup project click on references and add the java binding project you have just created as a reference. build it and try accessing your assembly either by adding it in the using section or by it's fully qualified name.
Good luck!

Module %s has open descendants or linked modules. can not reload

I am adding a language to my project for Arabic. When i update the resource Dlls, i am getting the following error in one of the base form from which all other forms were inherited.
I tried setting the OldCreateOrder to false for all the forms, but still the error persists. I have tried searching on the net for this kind of error, but no luck....
Does any one know about this error?? BTW i am using Delphi 6 Enterprise version.
Thanks in advance.
Finally i have solved the problem.
I couldn't able to find out the reason for the failure of the IDE to compile my project, but the external translation manager helped.
I forgot to add the DRC file to the translation manager. As a result, my resourcestrings were not loaded automatically.
For newbies who want to port the application to different languages,
Open the external translation manager from the Delphi6\Bin folder.
Select a language in the environment tab and in the files tab, select all the files that were used in the project. (Don't forget the DRC files)
Run the updaters and save the project file with the extension of the language selected.
Select the strings that need to be translated and add them to repository.
Translate the strings required.
Add the project created using the ETM to the project group and compile.
The resource dll file name should match the exe name, but the extension should be of the language. like xxxx.ARQ for arabic Qatar.
Thanks every 1

Localization in Blackberry Resource interface not generating

I am trying to implement localization in Blackberry for multiple language support.
For this I followed the tutorial from the following link
http://supportforums.blackberry.com/t5/Java-Development/Localizing-an-application/ta-p/442726
but i got the issue as described in this link
BlackBerry: Localization, Resource Bundle
But for me the file is still not generating even when I had created my .rrh file , i am following the same steps but still no success .
can anyone tell what I m missing ??
Regards
Be sure to have cleaned your project and checked "build automaticaly".
Then check your bin folder to the specified package in the option of the resource editor for the generated interface

IntelliJ, Grails - I deleted a file and nothing works anymore

I need help with IntelliJ, my project isnt starting anymore, I googled but cant find a solution. It started when I deleted a newly created file, a grails Service file.
First, the grails view disappeared. Adding new Framework Support to the project and get the view back via tool windows didnt work.
I also have no "grails" option in the tool menu anymore.
When I run the project (I had to re-setup the run configuration, it was all sort-of-deleted too), the console shows me this error:
Application expects grails version [1.2.3], but GRAILS_HOME is version [1.3.7].
All my Team memebers use 1.3.7 too, so I dont know why this should work.
Can somebody help me please.
Please let me know if you require more information to help me!
thanks a lot in advance!
daniel
how much modules can you see in the project view? there must be one for your grails application named and one for your grails plugins -grailsPlugins. maybe you accidentally deleted one of those intellj modules. the modules files are located under your project root and named as follows: .iml. in intellij go to file -> project structure -> modules. there you can add a existing module by clicking the + symbol and select your existing module for importing.
If the file was compiled at least once then I guess one can open the .class file with intellij and see the code. However all coments will be remove of course.

where to find "package com.rim.samples.docs.notifications;"

i a developing blackberry aplication using eclipse can any one tell where to find the following library
package com.rim.samples.docs.notifications;
i have downloaded it from blackberry site but i dont know how to use it
com.rim.samples.docs namespace is common for samples BlackBerry Application Developer Guide.
On the other hand, "package" token defines the packege namespace, not the import.
If you have downloaded code and post it to namespace with other name, you may have trouble to compile it. Resolve it in two ways:
1. if your code file is placed directly in project src folder, simply remove
package com.rim.samples.docs.notifications;
from code, this will set namespace to default.
2. in project src folder create folder "com\rim\samples\docs\notifications" and move file to folder "notifications".

Resources