Posts by Paulo Romeiro • 432 points
19 posts
-
2
votes2
answers5178
viewsQ: Place a red Gridview line if a cell has the false value
I would like a certain line from my GridView turn red if the corresponding cell in the closed column is false. My Asp.Net is like this: div class="GridMain"> <asp:GridView…
-
0
votes1
answer1270
viewsQ: Update an ASP.Net web page
How do I update an ASP.Net web page? I have a page that has two GridView and I need this page updated every 5 minutes. Mine GridView are like this: <div class="GridMain"> <asp:GridView…
-
2
votes2
answers513
viewsQ: How to put between within a code query?
I have the following consultation and I would like to put in the clause Where the condition of being within a certain period. public static DataTable stCloseCaseAll(int schoolId, string dataInicial,…
-
0
votes1
answer1319
viewsQ: How to enable a button after completing the required fields?
I need the button btnprint is enabled only if the DropDown, the txtDateInitial and the txtDateEnd were filled in. They could help? <%@ Page Title="" Language="C#"…
-
1
votes2
answers333
viewsQ: Place a button of Asp.net enable code only in a Tabpanel
In the code below: <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <div class="buttons"> <asp:ImageButton ID="btnNew" runat="server"…
asp.netasked Paulo Romeiro 432 -
3
votes2
answers247
viewsQ: Updating treeview
I have an application that uses a treeview as image and code below. ASPX: <%@ Page Title="" Language="C#" MasterPageFile="~/FrontPage.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs"…
-
2
votes3
answers266
viewsA: WPF - Datagrid - Exclusion
Try this. foreach (var item in MainGrid.SelectedItems) { this.SelectedProducts.Add((B.Product)item); }
-
1
votes1
answer1215
viewsQ: Process.Start(variable) to open an application without knowing the installation location
I have a Console Application that needs to call an application. Since I won’t be sure where it was installed, I need to assign the value to the path variable as below to get the application…
-
4
votes1
answer1976
viewsQ: Calling an executable other than Process in c#
Is there any way to call an executable other than by process? I need something that does not use the code below to call an executable because when I finish a process of an application that is not…
-
4
votes2
answers2456
viewsQ: End a C# process with WPF
I have a solution that has two projects. a main project and another that serves as Updater. To perform the upgrade, within the main project, I call a console application as follows. private void…
-
0
votes1
answer250
viewsQ: Extractexistingfileaction.Overwritesilently is not overwriting the files in a particular folder
I have an update solution for an application that uses the Dotnetzip API (http://dotnetzip.codeplex.com/) for handling ZIP files. One of the methods used is to overwrite files in certain folders as…
-
1
votes1
answer2741
viewsQ: Move files between folders with C#
I have an application that checks and downloads a file as soon as it runs through the Window_Loaded. Here is the method that performs this task: XmlDocument doc = new XmlDocument();…
-
7
votes1
answer731
viewsQ: Incrementing the Assemblyversion
I am creating an upgrade solution for an application I have and needed the Assembly version When placing an * on Assembly. [assembly: AssemblyVersion("1.0.0.*")] it started incrementing…
-
1
votes1
answer34
viewsA: Host address for Clickonce
to solve this problem I needed to put in Instalation Folder URL the network address and Update Location inside Upddates I put the host address.
-
0
votes1
answer34
viewsQ: Host address for Clickonce
I need to pass a host address in the pattern http://www.meusite.org.br/pasta as the location where is available the update in "Update Location" that is within "Updates" in the "Publish" tab of the…
-
0
votes1
answer1097
viewsQ: Clickonce failed to load Crystal Reports
I have a WPF application in C# and some reports of that application. When installing the application with Clickonce the reports are not called and the failure message appears when loading report.…
-
1
votes2
answers2473
viewsQ: how to extract zip files in c# to a folder where system is installed
How to Extract Zip Files in c# to a folder where the system is installed? using System; using System.IO.Compression; using System.Windows; using System.Xml; namespace TestXml { /// <summary>…
-
1
votes1
answer319
viewsQ: How to make a query inside an XML file?
I need the value of <version> is returned to a variable in a WPF application. The XML file is on the server and contains: <?xml version="1.0" encoding="ISO-8859-1" ?> <Application>…
-
0
votes1
answer864
viewsQ: Popular Grid VB6
I have a form that receives user information and would like to display them on a datagrid. I already have Datasource which is a Query that is assigned to a String variable called SQL. She returns…
visual-basic-6asked Paulo Romeiro 432