Posts by Charles Smith • 19 points
5 posts
-
-1
votes3
answers240
viewsQ: View does not appear in query - Sql Server
I have a 2-field view that does not appear in the query window. When I add 3 more fields, it appears. What can be?. View: SELECT B.TX_LOGIN, COUNT(A.CD_PROCESSO) AS TOTAL FROM dbo.TB_DUE_CAPA AS A…
-
0
votes2
answers460
viewsA: Method to automate the call of Forms in C#
Well, I don’t understand exactly what you want to do. The forms you will call will be explicit form? , ie: FormCadastro novoform = new FormCadastro(): Or do you still not know which form will be…
-
0
votes2
answers78
viewsA: WCF does not connect to Sqlserver when published on IIS
I have the same situation, but it’s working. My connection string is: Data Source=xxxxxxxx;Initial Catalog=xxxxx;User ID=xxxxx;Password=xxxxxxxxxxx Check that the sql server service (instance) is…
-
1
votes3
answers119
viewsA: Object is not persisted when using Entity Framework
good afternoon. By the code posted, the objCategory object is missing from the category table. To include: SisEF.categoria.Add(objCategoria); When it is changed, you have to locate the record in the…
-
1
votes1
answer205
viewsA: Security Certificate error in Webbrowser
Certified sites are complicated to use with webbrowser. When I came across this problem, initially I decided to make a thread to monitor when the certificate window appears and throw a ENTER on the…