I have C++/CLI project. I need compent like inputbox. I have read that I should create it by myself, but I am newbie, and haven't enough knowledge to do this. Maybe someone have working code or please explain how could I create this component .
Thanks in advance.
Related
Good day, everybody! I have got some troubles in creating two or more mogre window in one application. I'm using library from Leslie Godwin's project: www.codeproject.com/Articles/29190/Blend-the-OGRE-Graphics-Engine-into-your-WPF-proje
But when I try to create new window with help of the initialization function like this:
new Window1().Show(); my program crashes with AccessViolationException on RenderOneFrame function.
Am I going on a wrong way to create new window? If it is so,please, could you share a snippet of a code, that implements multi window approach.
If this method is quite good, what is the reason of this bug?
P.S. this is the only trouble that can't let us to develop the application. So it is very important to know, what the solution is.
Thank in advance!
I am working on internationalizing an old MFC project and I have many thousands of hard-coded strings to move into the string table. I'm looking for a macro, add-in, or some information on creating a macro, add-in, or wizard that would allow me to semi-automate the process. I would like to be able to highlight a string, right-click and select something like "move to resource" and have the string added to the string table for the project. Something customizable would be great such that I could edit the identifier created and have the tool replace the hard-coded string in the code with a look up function (that I provide the name of). I searched for a few days and can't find anything like this. Does anyone know of a tool already in existence, or can provide some info on what VS extensiblity classes I can use to write one? I am using VS2010.
Thanks.
Have you looked at http://www.lingobit.com/products/hardcoded_string_extraction.html ? This is the only product I know of that does this. It's a hairy problem because there are so many corner cases.
I am new to Dynamics CRM so please excuse me for the newbie question xD
I managed to create an option set field with 2 possibilities:
Scheme 1
Scheme 2
Does anyone have an idea how when a particular possibility is picked, a list of custom based fields will appear in the form? Thanks in advance
If i understand your problem correctly you want certain fields to appear/disappear according to the choice selected in the option set.
The way I see this working is by implementing a Javascript on the onChange event of the option set. you can do this from the 'Form Properties' when changing the layout of the form.
Below is a link showing some examples of possible useful commands that might help you:
http://www.powerobjects.com/blog/2011/01/14/crm-2011-useful-javascript-tidbits/
You can put your custom fields in a custom tab and then hide/disable it according to the value in the option set.
If you have any further problems feel free to ask :)
I hope this helps :)
Gdluck
If you are comfortable working in Visual Studio, I highly recommend installing the Developer Toolkit (You can find the .msi \tools\developertoolkit - download it from here). It will allow you to develop JScript with some syntax highlighting and intellisense and makes source control and deployment a snap.
With VB6, I want to make a messagebox manually so that I could modify its format and style with my own... Can anyone give me a tutorial[website] for this?
Any tutorial on building a VB6.0 form will do. Google is your friend.
Try this one: http://www.vbforums.com/showthread.php?t=445165
Create a form as you would normally, when you open it, you open it modally, this is the only difference.
You can make your own procedures to open it with given parameters if you wish.
aerohn, I did kind of already answer this question in your previous question:
Modifying Messagebox?
Try some code for the new message box form, and if you run into problems with it then ask a question about those problems. It's pretty simple, though... just make a form, throw on a label, size and color it however you'd like, and create a button or two to close the form. From your recent previous questions it looks like you know how to make a decent looking form; I think you can do this pretty easily.
Good luck!
I want to write code in C# for loading printer name in window. But I don't have any ideas to write it.
Can anybody help me to solve this problem?
You need to use PrinterSettings.InstalledPrinters. For an example see the linked page.