Microsoft Vista: properties parameter

  • emy_p / 100 / Sat, 06 Mar 2010 18:24:00 GMT / Comments (4)
  • Hi, i have visual studio 2005 with .Net Framework 3.0 Reditributed Package and Visual Studio 2005 extensions for .NET Framework 3.0
    could anyone tell me please why there isn′t parameter field in the property windows in my visual studio ?
    i can not set the parameter for workflow or activites, what could i do now ? manual set in- and output parameters in the workflow?

  • Keywords:

    properties, parameter, microsoft, vista

  • http://www.edevs.com/ms-vista/69816/«« Last Thread - Next Thread »»
    1. 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 |

    2. Thanks a lot for your answer,

      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 |

    3. 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 |

    4. Tom Lake,
      thankyou very much !

      emy_p | Mon, 03 Sep 2007 22:15:35 GMT |