AutoCompleteStringCollection in wpf - c#

I just want to do the following in .net 4.0 wpf windows application.
var source = new AutoCompleteStringCollection();
source.AddRange(Contract_Extracter.GlobalVariables.customerList);
textBoxClientID.AutoCompleteCustomSource = source;
textBoxClientID.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
textBoxClientID.AutoCompleteSource = AutoCompleteSource.CustomSource;
and I'm getting following errors,
The type or namespace name AutoCompleteStringCollection could not be found (are you missing a using directive or an assembly reference?)
System.Windows.Controls.TextBox does not contain a definition for AutoCompleteCustomSource and no extension method AutoCompleteCustomSource accepting a first argument of type 'System.Windows.Controls.TextBox' could be found (are you missing a using directive or an assembly reference?)
3.The name AutoCompleteSource does not exist in the current context
I have already added using System.Windows and the reference. What is wrong here? what are the assemblies should I refer?
Thanks

Related

'TMP_Text' does not contain a definition for 'ignoreRectMaskCulling'

I m trying to run a unity script and every time it throws this error while compiling
'TMP_Text' does not contain a definition for 'ignoreRectMaskCulling'
and no accessible extension method 'ignoreRectMaskCulling' accepting a first argument of type 'TMP_Text' could be found (are you missing a using directive or an assembly reference?)
if (verticalScrollbar != null)
{
textComponent.ignoreRectMaskCulling = true;
verticalScrollbar.onValueChanged.AddListener(OnScrollbarValueChange);
}

Xamarin Microcharts error: The type or namespace name 'Entry' does not exist in the namespace 'Microcharts'

I try to display a chart from Microcharts, but I receive this error:
/Users/pizhev/Documents/WeatherLocationInfo 1.6.8/WeatherLocationInfo/MainPage.xaml.cs(27,27): Error CS0234: The type or namespace name 'Entry' does not exist in the namespace 'Microcharts' (are you missing an assembly reference?) (CS0234) (WeatherLocationInfo)
I fallow this link: Tutorial and before two months this method work perfectly.
So when I try to change:
using Entry = Microcharts.Entry;
to
using Entry = Microcharts.ChartEntry;
I receive a many errors like this:
/Users/pizhev/Documents/WeatherLocationInfo 1.6.8/WeatherLocationInfo/MainPage.xaml.cs(243,243): Error CS1503: Argument 2: cannot convert from 'Xamarin.Forms.Entry' to 'Microcharts.ChartEntry' (CS1503) (WeatherLocationInfo)
and this:
/Users/pizhev/Documents/WeatherLocationInfo 1.6.8/WeatherLocationInfo/MainPage.xaml.cs(44,44): Error CS1061: 'ChartEntry' does not contain a definition for 'Text' and no accessible extension method 'Text' accepting a first argument of type 'ChartEntry' could be found (are you missing a using directive or an assembly reference?) (CS1061) (WeatherLocationInfo)
So what is changed in Microcharts and how can I fix this errors ?

C#: Resolve Missing Assembly Reference for IServiceProvider.QueryService

I am not able to build some C# code because of the following message:
Error CS1061 'IServiceProvider' does not contain a definition for 'QueryService' and no extension method 'QueryService' accepting
a first argument of type 'IServiceProvider' could be found (are you missing a using directive or an assembly reference?)
serviceProvider.QueryService(ref SID_STopLevelBrowser, ref guidIServiceProvider, out objIServiceProvider);
Can this be fixed by adding a reference? Which one?
Microsoft.VisualStudio.Data.dll
https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualstudio.data.serviceprovider.microsoft-visualstudio-ole-interop-iserviceprovider-queryservice?view=visualstudiosdk-2019

How to rectify Namespace errors in a Windows Store class library in Windows 8 and Visual Studio 2012?

I'm developing a classlibrary(Windows Store Apps) for XMPP in windows 8, I'm Getting these errors, I'd given all the required references like,
System.Net
System.Threading
and so on, But Still these errors arises,
Error 15 The type or namespace name 'Formatting' could not be found (are you missing a using directive or an assembly reference?)
Error 16 The type or namespace name 'Formatting' could not be found (are you missing a using directive or an assembly reference?)
Error 17 The type or namespace name 'Formatting' could not be found (are you missing a using directive or an assembly reference?)
Error 7 The type or namespace name 'ICloneable' does not exist in the namespace 'System' (are you missing an assembly reference?)
Error 9 The type or namespace name 'IPAddress' could not be found (are you missing a using directive or an assembly reference?)
Error 12 The type or namespace name 'IPAddress' could not be found (are you missing a using directive or an assembly reference?)
Error 13 The type or namespace name 'IPEndPoint' could not be found (are you missing a using directive or an assembly reference?)
Error 6 The type or namespace name 'ListDictionary' could not be found (are you missing a using directive or an assembly reference?)
Error 14 The type or namespace name 'ListDictionary' could not be found (are you missing a using directive or an assembly reference?)
Error 2 The type or namespace name 'Sockets' does not exist in the namespace 'System.Net' (are you missing an assembly reference?)
Error 3 The type or namespace name 'Sockets' does not exist in the namespace 'System.Net' (are you missing an assembly reference?)
Error 4 The type or namespace name 'Sockets' does not exist in the namespace 'System.Net' (are you missing an assembly reference?)
Error 5 The type or namespace name 'Stack' could not be found (are you missing a using directive or an assembly reference?)
Error 1 The type or namespace name 'Timer' could not be found (are you missing a using directive or an assembly reference?)
Error 8 The type or namespace name 'Timer' could not be found (are you missing a using directive or an assembly reference?)
Error 10 The type or namespace name 'Timer' could not be found (are you missing a using directive or an assembly reference?)
Error 18 The type or namespace name 'XmlTextWriter' could not be found (are you missing a using directive or an assembly reference?)
Error 11 Using the generic type 'System.Collections.Generic.Queue' requires 1 type arguments
Please anyone help me or suggest me the solution. . .
/// <summary>
/// returns the Xml, difference to the Xml property is that you can set formatting properties
/// </summary>
/// <param name="format"></param>
/// <param name="indent"></param>
/// <returns></returns>
public string ToString(Formatting format, int indent)
{
return BuildXml(this, format, indent, ' ');
}
#region << Xml Serializer Functions >>
private string BuildXml(Node e, Formatting format, int indent, char indentchar)
{
if ( e != null )
{
System.IO.StringWriter tw = new StringWriter();
XmlTextWriter w = new XmlTextWriter(tw);
w.Formatting = format;
w.Indentation = indent;
w.IndentChar = indentchar;
WriteTree(this, w, null);
return tw.ToString();
}
else
{
return "";
}
}
The 'Formatting' error is coming from this code block, Even though i've given the reference as system.xml
Theres no Option to Resolve,
Based on a quick google search for one of the comments in the code you've provided, I found that it's from here.
As this isn't your own code (I assume - perhaps incorrectly!) that you're attempting to compile for Windows Store Apps which presently targets the 3.5 framework and has references to things such as System.Windows.Forms listed in the project file, it'll likely not work until you rewrite portions of the code to target the Windows Store version of the framework. For example, XmlTextWriter is not listed under the System.Xml namespace in the [.NET For Windows Store Apps] API4.
In short - code for the "full" .net Framework cannot (other than the simplest of snippets) just be recompiled targeting the Windows Store .NET API.

Compiler error:The type or namespace name 'Core' does not exist in the namespace 'System' (are you missing an assembly reference?)

I try to upload an image in my project which is in c#.and my code in the submit button is following
FileUpload1.SaveAs(
Server.MapPath("Photos\\" +
System.Core.WebSecurity.GetUserName(Request) + ".jpg"));
Response.Write(
"<html> <script> alert ( 'you have successfully uploaded' ); </script></html>");
Response.Redirect("studentcreated.aspx");
but on compiling it shows an error as
The type or namespace name 'Core' does not exist in the namespace
'System' (are you missing an assembly reference?)
.
Then i try to solve this by adding system.core to reference. But still it shows the same error. I am using vs2008 asp3.5.
Try this to get username: User.Identity.Name
EDIT:
Add this reference: using System.Web.Security;

Categories