Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~525 People Reached
Favorite Tags
Member Avatar for rbeach1955

I am using FactoryLink SCADA HMI software and I need to lock the focus on a screen that automatically opens and needs operator to answer before it will close and allow the user to continue on the background screen. If anyone knows where I can find this answer I would …

Member Avatar for Begginnerdev
0
188
Member Avatar for rbeach1955

I have an aspx page that has a listview. Within the listview I have a column named BADGEID. When inserting the BADGEID as a textbox with the below code, everything works properly: <asp:TextBox ID="BADGE" runat="server" Text='<%# Bind("BadgeID") %>' I need this to be a DropDownList and I changed the textbox …

Member Avatar for vgulavni
0
113
Member Avatar for rbeach1955

when managing rules I receive the below error: Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is …

Member Avatar for rbeach1955
0
109
Member Avatar for rbeach1955

The Current loads for the below formulas are 53, 60 and 52. Below is a formula I have currently and runs properly: (SUM([Bus Duct # 1 Phase A Current Load])+ SUM([Bus Duct # 1 Phase B Current Load]) + SUM([Bus Duct # 1 Phase C Current Load])) / 3 AS …

0
37
Member Avatar for rbeach1955

The below programming works properly to show and hide gridviews: [code] <script type="text/javascript"> function hideGrid() {document.getElementById("Gridview3").style.displa y = "none";} function showGrid() {document.getElementById("Gridview3").style.displa y = "block";} </script> <INPUT Type="button" Value="Show Material List" OnClick="showGrid()"> &nbsp;&nbsp; <INPUT Type="button" Value="Hide Material List" OnClick="hideGrid()"> <div id="Gridview3"> <asp:GridView ID="GridView3" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource2" style="text-align: center; margin-left: 370px;"> …

Member Avatar for kvprajapati
0
78