The Managed Package Framework (MPF) provides C# classes you can use to implement your own project types. MPF implements many of the interfaces Visual Studio expects a project type to provide, leaving you free to concentrate on implementing the particulars of your project type. A language service provides editor support that lets you implement certain Visual Studio features. Managed Package Framework service classes provide support for common features
Questions tagged [mpf]
32 questions
2
votes
1 answer
C# WPF Style: One Button Mouseover - One Button keep Image
I have 2 buttons and one should change the background color on mouseover.
The otherone should keep his background Image also when mouseover.
My Problem is that the second one also gets the mouseover effect and the image is overwrited :(
…

user2687564
- 23
- 1
- 3
1
vote
2 answers
How to invoke Solution level Build command present in Visual Studio in my custom command while creating a Visual Studio extension?
The title pretty much says it all. I'm writing a visual studio extension in which i'm creating a custom command. In the callback of this command, i need to invoke the "solution level Build command" at some point in my logic. I found one…

Atul Poddar
- 23
- 5
1
vote
0 answers
"Operation must be an updateable query" Error
So I keep getting this error message:
from my function that calls this SQL statement:
UPDATE EQL_DATA1
SET SubCategoryID = 'value', ItemSize = 'value', Ell = 'value', Tee = 'value',
LngEl = 'value', Chk = 'value', Bfy = 'value',…

Uchiha Itachi
- 1,251
- 1
- 16
- 42
1
vote
1 answer
Duplicate Visual Studio Extension For Single Language
I'm new to Extension writing VS extensions, and finding information on the subject like untangling 3 balls of yarn. I've read quite a bit on the MSDN site, as well done a lot of failed google searches.
My goal is to write a Visual Studio extension…

R. Olson
- 25
- 4
1
vote
1 answer
Visual Studio does not start build output
I work on a custom project system that is based on MPF. For the build I have defined a custom target file which defines the minimum set of required targets like Build, Clean and Rebuild so that the project integrates nicely with the Visual Studio…

Matze
- 5,100
- 6
- 46
- 69
1
vote
0 answers
Calls GetScanner but never uses it
So I'm trying to create my own visual studio language plugin for a DSL. My question is, I've implemented LanguageService and override GetScanner. Through debugging I see that it actually returns the IScanner implementation, but it never calls…

Kelly Elton
- 4,373
- 10
- 53
- 97
1
vote
1 answer
Sprintf to concat string
I have a string which I need to concat some data onto the end. My problem is that each time the loop goes round I get previous loop data on the end of my string.
e.g data
1st loop iteration
1234@3
2nd loop iteration
3462@3@124
3rd loop…

Jed I
- 998
- 3
- 19
- 37
0
votes
0 answers
Mpf finance display ohlc on graph
On the graph window the y (the ordinate) are displayed but i would like the Open, High, Low and Close of the candle my cursor is on to be displayed
enter image description here
That is it
Read documentation
Searched on stack & internet

jkbfdgb
- 17
- 5
0
votes
1 answer
Candlesticks in matplotlib
I'm trying to make a cryptoscanner but I'm struggling a bit. The code right now can loop through the different coins in symbols.csv and print plots for all of them. The plots include close price, SMA and bollinger bands. Now I really want the close…

Jellyfish
- 67
- 9
0
votes
1 answer
TypeError after trying to plot dataframe with mpf.plot
I have a panda dataframe with the following columns:
Now I would like to plot out a chart with mpf.plot. But I am getting the following error:
How can I avoid the above TypeError Message?
I did set the df index with the following…

Yvar
- 155
- 4
- 14
0
votes
1 answer
mpdf not generating pdf if data is larger
I'm trying to generate a labels for the members. It comes with two things Address and Name. I'm using mpdf to generate pdf. I don't know why mpdf is not generating pdf for twenty second data on-wards.
So, i tried to check it by replacing same data…

vikram acharya
- 79
- 6
0
votes
1 answer
IBM MFP 8.0 multiple userID stick to 1 devices when use UserAuthenticationSecurityCheck
We are using the IBM MFP 8.0 with the UserAuthenticationSecurityCheck.
We implement the createUser method as intruction:
@Override
protected AuthenticatedUser createUser() {
AuthenticatedUser user = new AuthenticatedUser(userId, userId,…

Dat Hoang
- 1
- 2
0
votes
0 answers
Extend Visual Studio functionality for Installshield ISPROJ Project type
InstallShield must be the crappiest "industry standard" application in existence, for reasons too numerous to enumerate here. However, one of those deficiencies is something I'd like to be able to fix, and with my first foray into writing an…

Marc Chu
- 201
- 3
- 17
0
votes
0 answers
Visual Studio Extensibility - Creating a new Project type
I am trying to follow the steps here: https://msdn.microsoft.com/en-us/library/cc512961.aspx to create a new project system for a custom DSL that I want to add support for in Visual Studio (eventually this will include a lot of functionality, but…
0
votes
1 answer
MPF Project : VS Package Build Event Not calling in VS 2012
I am working with custom project creation for Visual Studio 2012 and 2013 and creating our own VS package with project type *.myproj
It is working fine with VS 2013. But in VS 2012 my code for the below method is only calling for the first time,…

Bharathi Devarasu
- 7,759
- 2
- 18
- 23