Posts by Igor • 161 points
18 posts
-
0
votes1
answer193
views -
1
votes2
answers414
viewsA: Insert CSV file data into the pl/sql Database using VB.NET
I was able to record the CSV in the database using a String Array to store each information in an array position. Stayed that way: Public Function LerCsvConfrec(ByVal conexao As…
-
1
votes2
answers414
viewsQ: Insert CSV file data into the pl/sql Database using VB.NET
I am reading a csv file by a Console Application, and up to this point is returning me correctly. Now I’m having trouble understanding how to include each field in a Bank column. This is the code I…
-
-1
votes1
answer482
views -
0
votes1
answer568
viewsA: Export Gridview to CSV in excel file / VB.NET
After much fighting with this code, I found a way to solve the problem of the columns always return 0 I inserted a Directcast to convert the gv.DataSource in one object and then use another…
-
0
votes1
answer568
viewsQ: Export Gridview to CSV in excel file / VB.NET
Following examples found on the web and even stackoverflow I filled the button btnGerarCSV thus. Protected Sub btnGerarCSV_Click(ByVal sender As Object, ByVal e As EventArgs) Handles…
-
2
votes1
answer1201
viewsQ: I must not show negative results
I created a query where I bring some information, among this information the last column returns positive, negative and zeroed values. I don’t want you to display the lines with negative values, but…
-
1
votes1
answer117
viewsQ: Export Dataset to Excel with Spreadsheetgear
I’m trying to export 7 datatables to a spreadsheet, each datatable into a sheet using Spreadsheetgear. I am having enough difficulty in returning the data and exporting them to excel. This is my…
-
1
votes1
answer52
viewsQ: Failure in swing application response
I have a swing application in which verifying whether the typed word is correct or wrong. String palavra[] = new String[3]; palavra[0] = "bar"; palavra[1] = "ola"; palavra[2] = "alo"; String p =…
-
1
votes1
answer76
viewsQ: Type conversion going wrong
I have a data conversion problem when going through For Each, accuses the item "vl_maodeobra" cannot be converted from String to type Integer. The problem is that no matter what conversion I try to…
-
1
votes1
answer55
viewsQ: Accept any Annex format
I have an application where you can insert attachments and then download them. But I did it in a way that with every file format I want to insert as an attachment, I enter a For Each in this way…
-
3
votes2
answers10071
viewsQ: Update to clear entire column
I need to make a update in the database in which zero 30 thousand records, however I need to reset only the record of one of the columns. Example table: cd_product|ds_product|pr_product|dt_update…
-
0
votes1
answer487
views -
0
votes0
answers198
viewsQ: Timeout for Oracleconnection
I have a function to open the connection of the banks in Oracle and in this function I want to put a time limit to the attempt to connect to the bank. I tried to use ConnectionString in this way…
-
0
votes1
answer85
viewsQ: Configuration XML
I’m having trouble understanding an XML case The task I have to do is this: If in the register of at least one input, the storage center (esmart table, field10) for EXTC the system considers that it…
-
1
votes1
answer89
viewsQ: Use only one parameter
Hello, it is possible to use only one parameter of a function? My problem is I have a Function oUtils.CarregarListaDominioAnalise(Session("idioma"), lst_cdocorrencia, 30, True, "", "") In which…
-
0
votes1
answer258
viewsA: Check Box to call function that changes language
People managed to solve this problem. I’m calling the Idioma = 2 that way If chkIngles.Checked = True Then dt = oRel.GerarRelatorioSg(Me.txtdtinicio.Text, Me.txtdtfim.Text, tpdata, idconcessionario,…
-
1
votes1
answer258
viewsQ: Check Box to call function that changes language
I’m having a doubt on a screen .aspx that generates a grid report and need to do that when checking a checkbox and clicking the button Beget the report is generated in English. To generate this…