hi there got vista ultimate when installed the games that are with the system ie spider mahjongg etc...
By delmec
I'm using AutomationElement.FromPoint to get the automation element at that location. In most case...
By timmulholland
IE crashes (turns cloudy, then app crash with message, when I hit SEND on OWA.But only after I updat...
By mclayton2000
Hi, I'm going to be upgrading my 1.5 year old desktop to windows vista ultimate when I go home ...
By paulg5372
We have just installed a Belkin high speed mode wireless g router with built in usb print server. it...
By hounddog, 1 Comments
Hello,After installing Vista Ultimate, PC hangs for minutes due to high cpu usage, gets release for ...
By alon, 4 Comments
I just tried running the "Introduction to CardSpace with Internet Explorer 7" samples on a...
By keithbrown, 2 Comments
Hi all,Got a weird one here. There are some sample images provided with Vista in the "My Pictur...
By pwinant, 2 Comments
After install MCMS 2002 Developer Edition with SP1a, I got “HTTP/1.1 500 Internal Server Error”, whe...
By briannewer, 1 Comments
Hi,
If you cannot see the parameter names among the list of properties try switching views - Alphabetical View, Categorized View..etc. These buttons are right on upper left corner of the properties window (alphabetical view button has a-z letters on it and categorized view is on the left of the alphabetical view button). When you switch to categorized view there is going to be a parameters category and under that the parameters should be listed. If you cannot see the parameters tab at all in the categorized view then try setting them in the code beside files in the workflow and build and switch back to the designer view again.These are the couple things that came on my mind that you can try now.
Hope this helps
Thanks
Elif
P.S. Are you using VS2005 professional? is it the release build or one of the beta builds?
elifon_msft | Mon, 03 Sep 2007 22:12:32 GMT |
there isn′t parameter list by all button, it doesn′t work also when i try to put a property on the code behind and then build ,there ist also message from VS (sorry in german, i try to translate !) that information about the status of VS at the moment when the problem come, the operatingsystem version and computer hardware, the digital Product ID, that identify the licenz, the internet protocol of the computer...
there isn′t also no UpdateData, SelectData, WaitForData, WaitForQuery in the tool box.
yes, i′m using VS2005 professional, a release which i becom from the university for student
is that incompatible between VS and the runtime component, extension? What can i can do now? Please give me an advice !
Thankyou so much
emy_p | Mon, 03 Sep 2007 22:13:31 GMT |
Parameters are now defined directly in the Activity / Workflow's class file using normal .NET property or DependencyProperty like the following:
public string parameterOne = string.Empty();
public string ParameterOne
{
get
{
return this. parameterOne;
}
set
{
this. parameterOne = value;
}
}
or
public static DependencyProperty ParameterOneProperty = DependencyProperty.Register("ParameterOne", typeof(string), typeof(Activity), new PropertyMetadata(string.Empty()));
[Browsable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public string ParameterOne
{
get
{
return base.GetValue(Activity. ParameterOneProperty);
}
set
{
base.SetValue(Activity. ParameterOneProperty, value);
}
}
The UpdateData, SelectData, WaitForData and WaitForQuery activities were removed after Beta 2, I think don’t quote me on it.VS2005 Professional is supported the Express edition is not.Please post the message in German if you can’t figure out how to resolve you problem and can’t translate it.
tomlake_msft | Mon, 03 Sep 2007 22:14:36 GMT |
thankyou very much !
emy_p | Mon, 03 Sep 2007 22:15:35 GMT |