Posts by Ricardo Gonçalves • 83 points
10 posts
-
0
votes0
answers13
viewsQ: Access the SSIS catalogue via SSIS
I need to create a process on SSIS SQL Server Integration Services that can extract from each project which tables are being used. The end result is to get a table that is automatically fed with two…
-
2
votes1
answer50
viewsQ: Doubt in VBA Excel 2013
I have this bit of code: Range("F8").Select For Each m In Range(Range("C8"), Range("C" & rows.Count).End(xlUp)) If ActiveCell.Offset(0, 0) <> " " Then ActiveCell.Offset(0, 7) =…
-
0
votes0
answers62
viewsQ: Accept all kinds of data
Good afternoon, I have this function in JS that accepts for example 1234, but I want it to also accept 12:34 (time format). I suspect that the problem is in parseint, that is, instead of…
javascriptasked Ricardo Gonçalves 83 -
0
votes4
answers922
viewsA: How to make a combo With the days of the month?
I ended up doing so, after researching on the net: if (string.IsNullOrEmpty(Request["idDiaAmortizacaoCredito"])) { List<clDays> d = new List<clDays>(); foreach (int x in…
-
1
votes1
answer114
viewsQ: Date validation
I’m doing a function of ExcelToEntityList, i.e., import Excel data into a list, but need to validate start and end dates. I’m doing it right? The function: public…
-
1
votes4
answers922
viewsQ: How to make a combo With the days of the month?
What is the best way to make a combobox with the days of the month? That means the combo has to be from 1 to 31 days. On the HTML side I have a label called "drpDia", and I need to load this label…
-
-3
votes1
answer2937
viewsQ: How to Compare Dates
I have this code to save the data entered, Dia, Diainicio and Diafim. protected void btnSavePontuacao_Click(object sender, EventArgs e) { decimal id_TipoDia = 0; string Dia = txtDay.Text; string…
c#asked Ricardo Gonçalves 83 -
1
votes3
answers1521
viewsQ: Cannot implicitly Convert type 'string' to 'int'
protected void btnSave_Click(object sender, EventArgs e) { List<ProdutoAmortizacaoCreditoDias> aDay = new List<ProdutoAmortizacaoCreditoDias>(); ProdutoAmortizacaoCreditoDias ee = new…
-
0
votes1
answer601
viewsQ: Cannot implicitly Convert type list to an Object
Good night, I’m doubting the following mistake: Cannot implicitly Convert type 'System.Collections.Generic.List' to 'ITCore.FlowCredit.Business.Entities.ProdutoAmortizacaoCreditoDiasSearch' The…
-
0
votes2
answers189
viewsQ: Convert Type to List
Good afternoon, I’m developing a project in C# and I have an error now that I’m not solving. Cannot implicitly Convert type 'Itcore.FlowCredit.Business.Entities.Productmortizacaocreditodiassearch'…
c#asked Ricardo Gonçalves 83