473,325 Members | 2,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,325 software developers and data experts.

Problem Binding Propertyless Class to a Repeater

I am consuming a web serivce from Amazon.Com. I have the following
class which was autogenerated by VS.NET when I created a Web Reference
to http://webservices.amazon.com/AWSECo...ceService.wsdl

AmazonWebService.com.amazon.webservices.Item

As you can see from the code snippets below it has public member
variables rather than public Properties. When I use <%#
DataBinder.Eval(Container.DataItem, "ASIN") %> syntax in Repeater1 in
my aspx page I get the following error.

[HttpException (0x80004005): DataBinder.Eval:
'AmazonWebService.com.amazon.webservices.Item' does not contain a
property with the name ASIN.]
System.Web.UI.DataBinder.GetPropertyValue(Object container, String
propName)
System.Web.UI.DataBinder.Eval(Object container, String[]
expressionParts)
System.Web.UI.DataBinder.Eval(Object container, String expression)
ASP.SearchForm_aspx.__DataBind__control8(Object sender, EventArgs e)
in c:\inetpub\wwwroot\AmazonWebService\SearchForm.asp x:33
System.Web.UI.Control.OnDataBinding(EventArgs e)
System.Web.UI.Control.DataBind()
System.Web.UI.Control.DataBind()
System.Web.UI.WebControls.Repeater.CreateItem(Int3 2 itemIndex,
ListItemType itemType, Boolean dataBind, Object dataItem)
System.Web.UI.WebControls.Repeater.CreateControlHi erarchy(Boolean
useDataSource)
System.Web.UI.WebControls.Repeater.OnDataBinding(E ventArgs e)
System.Web.UI.WebControls.Repeater.DataBind()
AmazonWebService.Web.SearchForm.Button1_Click(Obje ct sender, EventArgs
e) in c:\inetpub\wwwroot\amazonwebservice\searchform.asp x.cs:83
System.Web.UI.WebControls.Button.OnClick(EventArgs e)
System.Web.UI.WebControls.Button.System.Web.UI.IPo stBackEventHandler.RaisePostBackEvent(String
eventArgument)
System.Web.UI.Page.RaisePostBackEvent(IPostBackEve ntHandler
sourceControl, String eventArgument)
System.Web.UI.Page.RaisePostBackEvent(NameValueCol lection postData)
System.Web.UI.Page.ProcessRequestMain()

If I add a property to the Item class called ASINP, which encapsulates
ASIN member variable, and I use <%#
DataBinder.Eval(Container.DataItem, "ASINP") %> syntax in Repeater1 on
my aspx then everything works fine. Since the Item class is
autogenerated I do not want to have to add Properties in every
autogenerated class because I have about 40 auto generated classes.
How can I reference the memeber variable ASIN in the aspx page, or any
other memeber variable in that class.

Please see the code snippets below if you have questions.

Thanks,
Chris Gastin

CODE SNIPPETS:
////////////////////////////////////////////////////////////////////////////////////////////////////
// asp:Repeater
///////////////////////////////////////////////////////////////////////////////////////////////////
<asp:Repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table border=1>
<tr>
<td>Results:</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td bgcolor="LightGrey">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr>
<td bgcolor="Yellow">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>


////////////////////////////////////////////////////////////////////////////////////////////////////
// Button Click Event
///////////////////////////////////////////////////////////////////////////////////////////////////
private void Button1_Click(object sender, System.EventArgs e)
{
AWSECommerceService svc = new AWSECommerceService();
ItemSearchRequest itemSearchRequest = new ItemSearchRequest();
itemSearchRequest.Keywords = TextBox1.Text;
itemSearchRequest.SearchIndex = DropDownList1.SelectedValue;
itemSearchRequest.MerchantId = "All";
itemSearchRequest.ResponseGroup = new string[]{"Large"};
ItemSearch search = new ItemSearch();
search.SubscriptionId =
ConfigurationSettings.AppSettings["SubscriptionId"];
search.Request = new ItemSearchRequest[]{itemSearchRequest};
IAsyncResult result = svc.BeginItemSearch(search,null,null);
ItemSearchResponse searchResponse = svc.EndItemSearch(result);

Repeater1.DataSource = searchResponse.Items[0].Item;
Repeater1.DataBind();
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Item Class
///////////////////////////////////////////////////////////////////////////////////////////////////

/// <remarks/>
[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://webservices.amazon.com/AWSECommerceService/2004-10-19")]
public class Item {

/// <remarks/>
public string ASIN;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Er ror",
IsNullable=false)]
public ErrorsError[] Errors;

/// <remarks/>
public string DetailPageURL;

/// <remarks/>
public string SalesRank;

/// <remarks/>
public Image SmallImage;

/// <remarks/>
public Image MediumImage;

/// <remarks/>
public Image LargeImage;

/// <remarks/>
public ItemAttributes ItemAttributes;

/// <remarks/>
public OfferSummary OfferSummary;

/// <remarks/>
public Offers Offers;

/// <remarks/>
public VariationSummary VariationSummary;

/// <remarks/>
public Variations Variations;

/// <remarks/>
public CustomerReviews CustomerReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ed itorialReview",
IsNullable=false)]
public string[] EditorialReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarProduct",
IsNullable=false)]
public SimilarProductsSimilarProduct[] SimilarProducts;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarBusiness",
IsNullable=false)]
public SimilarBusinessesSimilarBusiness[] SimilarBusinesses;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ac cessory",
IsNullable=false)]
public AccessoriesAccessory[] Accessories;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Di sc",
IsNullable=false)]
public TracksDisc[] Tracks;

/// <remarks/>
public BrowseNodes BrowseNodes;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Li stmaniaList",
IsNullable=false)]
public ListmaniaListsListmaniaList[] ListmaniaLists;

/// <remarks/>
public SearchInside SearchInside;

/// <remarks/>
public PromotionalTag PromotionalTag;
}
Nov 18 '05 #1
2 2299
Hi Gastin:

You do not have to use DataBinder.Eval in data binding expressions,
you can call your own static method or even cast the DataContainer to
the correct type.

I have some examples here:

Digging into DataBinding Expressions
http://odetocode.com/Articles/278.aspx

HTH,

--
Scott
http://www.OdeToCode.com/blogs/scott/\

On 30 Oct 2004 19:34:45 -0700, ch***@gastin.com (Gastin) wrote:
I am consuming a web serivce from Amazon.Com. I have the following
class which was autogenerated by VS.NET when I created a Web Reference
to http://webservices.amazon.com/AWSECo...ceService.wsdl

AmazonWebService.com.amazon.webservices.Item

As you can see from the code snippets below it has public member
variables rather than public Properties. When I use <%#
DataBinder.Eval(Container.DataItem, "ASIN") %> syntax in Repeater1 in
my aspx page I get the following error.

[HttpException (0x80004005): DataBinder.Eval:
'AmazonWebService.com.amazon.webservices.Item' does not contain a
property with the name ASIN.]
System.Web.UI.DataBinder.GetPropertyValue(Objec t container, String
propName)
System.Web.UI.DataBinder.Eval(Object container, String[]
expressionParts)
System.Web.UI.DataBinder.Eval(Object container, String expression)
ASP.SearchForm_aspx.__DataBind__control8(Object sender, EventArgs e)
in c:\inetpub\wwwroot\AmazonWebService\SearchForm.asp x:33
System.Web.UI.Control.OnDataBinding(EventArgs e)
System.Web.UI.Control.DataBind()
System.Web.UI.Control.DataBind()
System.Web.UI.WebControls.Repeater.CreateItem(Int 32 itemIndex,
ListItemType itemType, Boolean dataBind, Object dataItem)
System.Web.UI.WebControls.Repeater.CreateControlH ierarchy(Boolean
useDataSource)
System.Web.UI.WebControls.Repeater.OnDataBinding( EventArgs e)
System.Web.UI.WebControls.Repeater.DataBind()
AmazonWebService.Web.SearchForm.Button1_Click(Obj ect sender, EventArgs
e) in c:\inetpub\wwwroot\amazonwebservice\searchform.asp x.cs:83
System.Web.UI.WebControls.Button.OnClick(EventArg s e)
System.Web.UI.WebControls.Button.System.Web.UI.IP ostBackEventHandler.RaisePostBackEvent(String
eventArgument)
System.Web.UI.Page.RaisePostBackEvent(IPostBackEv entHandler
sourceControl, String eventArgument)
System.Web.UI.Page.RaisePostBackEvent(NameValueCo llection postData)
System.Web.UI.Page.ProcessRequestMain()

If I add a property to the Item class called ASINP, which encapsulates
ASIN member variable, and I use <%#
DataBinder.Eval(Container.DataItem, "ASINP") %> syntax in Repeater1 on
my aspx then everything works fine. Since the Item class is
autogenerated I do not want to have to add Properties in every
autogenerated class because I have about 40 auto generated classes.
How can I reference the memeber variable ASIN in the aspx page, or any
other memeber variable in that class.

Please see the code snippets below if you have questions.

Thanks,
Chris Gastin

CODE SNIPPETS:
////////////////////////////////////////////////////////////////////////////////////////////////////
// asp:Repeater
///////////////////////////////////////////////////////////////////////////////////////////////////
<asp:Repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table border=1>
<tr>
<td>Results:</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td bgcolor="LightGrey">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr>
<td bgcolor="Yellow">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>


////////////////////////////////////////////////////////////////////////////////////////////////////
// Button Click Event
///////////////////////////////////////////////////////////////////////////////////////////////////
private void Button1_Click(object sender, System.EventArgs e)
{
AWSECommerceService svc = new AWSECommerceService();
ItemSearchRequest itemSearchRequest = new ItemSearchRequest();
itemSearchRequest.Keywords = TextBox1.Text;
itemSearchRequest.SearchIndex = DropDownList1.SelectedValue;
itemSearchRequest.MerchantId = "All";
itemSearchRequest.ResponseGroup = new string[]{"Large"};
ItemSearch search = new ItemSearch();
search.SubscriptionId =
ConfigurationSettings.AppSettings["SubscriptionId"];
search.Request = new ItemSearchRequest[]{itemSearchRequest};
IAsyncResult result = svc.BeginItemSearch(search,null,null);
ItemSearchResponse searchResponse = svc.EndItemSearch(result);

Repeater1.DataSource = searchResponse.Items[0].Item;
Repeater1.DataBind();
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Item Class
///////////////////////////////////////////////////////////////////////////////////////////////////

/// <remarks/>
[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://webservices.amazon.com/AWSECommerceService/2004-10-19")]
public class Item {

/// <remarks/>
public string ASIN;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Er ror",
IsNullable=false)]
public ErrorsError[] Errors;

/// <remarks/>
public string DetailPageURL;

/// <remarks/>
public string SalesRank;

/// <remarks/>
public Image SmallImage;

/// <remarks/>
public Image MediumImage;

/// <remarks/>
public Image LargeImage;

/// <remarks/>
public ItemAttributes ItemAttributes;

/// <remarks/>
public OfferSummary OfferSummary;

/// <remarks/>
public Offers Offers;

/// <remarks/>
public VariationSummary VariationSummary;

/// <remarks/>
public Variations Variations;

/// <remarks/>
public CustomerReviews CustomerReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ed itorialReview",
IsNullable=false)]
public string[] EditorialReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarProduct",
IsNullable=false)]
public SimilarProductsSimilarProduct[] SimilarProducts;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarBusiness",
IsNullable=false)]
public SimilarBusinessesSimilarBusiness[] SimilarBusinesses;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ac cessory",
IsNullable=false)]
public AccessoriesAccessory[] Accessories;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Di sc",
IsNullable=false)]
public TracksDisc[] Tracks;

/// <remarks/>
public BrowseNodes BrowseNodes;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Li stmaniaList",
IsNullable=false)]
public ListmaniaListsListmaniaList[] ListmaniaLists;

/// <remarks/>
public SearchInside SearchInside;

/// <remarks/>
public PromotionalTag PromotionalTag;
}


Nov 18 '05 #2
Scott:

Thanks for the response. Acutally after a little digging an
experimenting I realized I did not have to use the DataBinder.Eval in
my data binding expression.

I used casted Container.DataItem to the instatitated object Item like
this.

<%#((Item)Container.DataItem).ASIN%>

Again than for the links. This is giving me insight into how data bind
works. I really appreciate you assitance.

Thanks
Chris Gastin
"Java Developer trying to learn .NET"

Scott Allen <bitmask@[nospam].fred.net> wrote in message news:<t2********************************@4ax.com>. ..
Hi Gastin:

You do not have to use DataBinder.Eval in data binding expressions,
you can call your own static method or even cast the DataContainer to
the correct type.

I have some examples here:

Digging into DataBinding Expressions
http://odetocode.com/Articles/278.aspx

HTH,

--
Scott
http://www.OdeToCode.com/blogs/scott/\

On 30 Oct 2004 19:34:45 -0700, ch***@gastin.com (Gastin) wrote:
I am consuming a web serivce from Amazon.Com. I have the following
class which was autogenerated by VS.NET when I created a Web Reference
to http://webservices.amazon.com/AWSECo...ceService.wsdl

AmazonWebService.com.amazon.webservices.Item

As you can see from the code snippets below it has public member
variables rather than public Properties. When I use <%#
DataBinder.Eval(Container.DataItem, "ASIN") %> syntax in Repeater1 in
my aspx page I get the following error.

[HttpException (0x80004005): DataBinder.Eval:
'AmazonWebService.com.amazon.webservices.Item' does not contain a
property with the name ASIN.]
System.Web.UI.DataBinder.GetPropertyValue(Objec t container, String
propName)
System.Web.UI.DataBinder.Eval(Object container, String[]
expressionParts)
System.Web.UI.DataBinder.Eval(Object container, String expression)
ASP.SearchForm_aspx.__DataBind__control8(Object sender, EventArgs e)
in c:\inetpub\wwwroot\AmazonWebService\SearchForm.asp x:33
System.Web.UI.Control.OnDataBinding(EventArgs e)
System.Web.UI.Control.DataBind()
System.Web.UI.Control.DataBind()
System.Web.UI.WebControls.Repeater.CreateItem(Int 32 itemIndex,
ListItemType itemType, Boolean dataBind, Object dataItem)
System.Web.UI.WebControls.Repeater.CreateControlH ierarchy(Boolean
useDataSource)
System.Web.UI.WebControls.Repeater.OnDataBinding( EventArgs e)
System.Web.UI.WebControls.Repeater.DataBind()
AmazonWebService.Web.SearchForm.Button1_Click(Obj ect sender, EventArgs
e) in c:\inetpub\wwwroot\amazonwebservice\searchform.asp x.cs:83
System.Web.UI.WebControls.Button.OnClick(EventArg s e)
System.Web.UI.WebControls.Button.System.Web.UI.IP ostBackEventHandler.RaisePostBackEvent(String
eventArgument)
System.Web.UI.Page.RaisePostBackEvent(IPostBackEv entHandler
sourceControl, String eventArgument)
System.Web.UI.Page.RaisePostBackEvent(NameValueCo llection postData)
System.Web.UI.Page.ProcessRequestMain()

If I add a property to the Item class called ASINP, which encapsulates
ASIN member variable, and I use <%#
DataBinder.Eval(Container.DataItem, "ASINP") %> syntax in Repeater1 on
my aspx then everything works fine. Since the Item class is
autogenerated I do not want to have to add Properties in every
autogenerated class because I have about 40 auto generated classes.
How can I reference the memeber variable ASIN in the aspx page, or any
other memeber variable in that class.

Please see the code snippets below if you have questions.

Thanks,
Chris Gastin

CODE SNIPPETS:
////////////////////////////////////////////////////////////////////////////////////////////////////
// asp:Repeater
///////////////////////////////////////////////////////////////////////////////////////////////////
<asp:Repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table border=1>
<tr>
<td>Results:</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td bgcolor="LightGrey">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr>
<td bgcolor="Yellow">
<%# DataBinder.Eval(Container.DataItem, "ASIN") %>
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>


////////////////////////////////////////////////////////////////////////////////////////////////////
// Button Click Event
///////////////////////////////////////////////////////////////////////////////////////////////////
private void Button1_Click(object sender, System.EventArgs e)
{
AWSECommerceService svc = new AWSECommerceService();
ItemSearchRequest itemSearchRequest = new ItemSearchRequest();
itemSearchRequest.Keywords = TextBox1.Text;
itemSearchRequest.SearchIndex = DropDownList1.SelectedValue;
itemSearchRequest.MerchantId = "All";
itemSearchRequest.ResponseGroup = new string[]{"Large"};
ItemSearch search = new ItemSearch();
search.SubscriptionId =
ConfigurationSettings.AppSettings["SubscriptionId"];
search.Request = new ItemSearchRequest[]{itemSearchRequest};
IAsyncResult result = svc.BeginItemSearch(search,null,null);
ItemSearchResponse searchResponse = svc.EndItemSearch(result);

Repeater1.DataSource = searchResponse.Items[0].Item;
Repeater1.DataBind();
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Item Class
///////////////////////////////////////////////////////////////////////////////////////////////////

/// <remarks/>
[System.Xml.Serialization.XmlTypeAttribute(Namespac e="http://webservices.amazon.com/AWSECommerceService/2004-10-19")]
public class Item {

/// <remarks/>
public string ASIN;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Er ror",
IsNullable=false)]
public ErrorsError[] Errors;

/// <remarks/>
public string DetailPageURL;

/// <remarks/>
public string SalesRank;

/// <remarks/>
public Image SmallImage;

/// <remarks/>
public Image MediumImage;

/// <remarks/>
public Image LargeImage;

/// <remarks/>
public ItemAttributes ItemAttributes;

/// <remarks/>
public OfferSummary OfferSummary;

/// <remarks/>
public Offers Offers;

/// <remarks/>
public VariationSummary VariationSummary;

/// <remarks/>
public Variations Variations;

/// <remarks/>
public CustomerReviews CustomerReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ed itorialReview",
IsNullable=false)]
public string[] EditorialReviews;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarProduct",
IsNullable=false)]
public SimilarProductsSimilarProduct[] SimilarProducts;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Si milarBusiness",
IsNullable=false)]
public SimilarBusinessesSimilarBusiness[] SimilarBusinesses;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Ac cessory",
IsNullable=false)]
public AccessoriesAccessory[] Accessories;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Di sc",
IsNullable=false)]
public TracksDisc[] Tracks;

/// <remarks/>
public BrowseNodes BrowseNodes;

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Li stmaniaList",
IsNullable=false)]
public ListmaniaListsListmaniaList[] ListmaniaLists;

/// <remarks/>
public SearchInside SearchInside;

/// <remarks/>
public PromotionalTag PromotionalTag;
}

Nov 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Gastin | last post by:
I am digesting a web serivce from Amazon.Com. I have the following class which was autogenerated by VS.NET when I created a Web Reference to...
2
by: Stephen Miller | last post by:
I am using the OnItemDataBound event of Repeater control to nest a DataGrid within the Repeater. When I attempt to bind to the DataGrid using the DataSource method I get the error message "Object...
2
by: Donald Williamson | last post by:
I have a DataReader that I am binding to a Repeater control. In the DataReader, I have two fields: 'Name1' and 'Name2' 'Name1' will always have a person's name. Name2 periodically has a person's...
2
by: Colin Nicholls | last post by:
Platform: ASP.NET 1.1 I have a repeater nested inside another repeater. My outer repeater is looping fine. I am manually binding the inner repeater to a DataReader obtained from another...
1
by: Steve Lutz | last post by:
I have written a web service to provide some back-end functionality to a Web Site. The web service returns lists of items. If I use the webservice via a browser, it works fine and returns the...
4
by: Brad Baker | last post by:
I'm going a little crazy :) I'm trying to bind a repeater control to a dataset on page load using the following code: if (Request.QueryString != null) { string customerid = Request.QueryString;...
0
by: uncensored | last post by:
Hello everyone, I'm fairly new at .Net and I have a repeater inside a repeater problem. I will attach my code to this message but basically what I am able to tell when I run my page it tells me...
12
by: =?Utf-8?B?Qi4gQ2hlcm5pY2s=?= | last post by:
I'm doing a web app in VB/Dot Net 2.0. I'm probably a bit rusty and I have no experience using the repeater control. I have a user control I've created with multiple properties. I've created a...
2
by: Hong | last post by:
Hi, I have been scratching my head over this problem for hours, the repeater control I am using would only render the controls specified in HeaderTemplate and FooterTemplate, but the repeater...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.