Posts by Andrew Alex • 553 points
12 posts
-
0
votes1
answer88
viewsA: FTP Request timeout with NET Provider only
The problem, it was in the resolution of dns the ISP, it was not able to solve the DNS of the Server address, doing the test directly with the IP, the same goes to work. However as it is a hosting…
-
-1
votes1
answer88
viewsQ: FTP Request timeout with NET Provider only
I use FTP, to download files to my system, it is a very simple code, using FTP REQUEST, however I am facing problems with who uses the NET provider(and some others however the Net is more evident)…
-
0
votes0
answers148
viewsQ: Modularize Winforms
I have the following scenario, 1 System Containing several functionalities, these functionalities, have some that are similar (Changes according to the User Profile). Only I’m having a hard time…
-
6
votes3
answers1631
viewsA: How to add Directory to the Windows Path variable during installation?
For the via installer "Inno Setup", could be done that way adding to Section [Registry]. Setting Environment Variables Environment variables are stored as string values in the Registry, so it is…
-
7
votes1
answer1504
viewsQ: How to publish a . EXE secure, other than through Click Once . Net
My scenario is composed as follows: I have applications, which are configured according to each customer, are apps sold in bulk, I have a support system, which automates this configuration and…
-
2
votes1
answer171
viewsQ: Using ng-Options how do I filter that exactly interprets the reported value
I’ll give you an example just for testing: In this example when I put filter:chart.id='1', in addition to it returning me id 1 it returns me id 10, as I would return only id=1? function…
-
1
votes3
answers596
viewsA: Delphi 7 apps in windows 8
I have applications made in Delphi using the Indy 10, using the components to send email, I have no problems in this case neither with Win8 nor Win7. It’s simple to replace Indy 9 with 10 for a look…
-
4
votes2
answers370
viewsQ: How to select from a night period (18hrs to 6hrs)
Description: Count how many times the action occurred in the night period considering the time from 18:00 to 06:00 in the morning. There is a better way to select this type without having to use or…
-
0
votes4
answers2129
viewsA: SQL query with ID from a combobox - C#
First I would change the way you fill the combobox to: conexao = new SqlConnection(conexao_sqlserver); SqlCommand sql = new SqlCommand("select func_nome,func_id from func_serv", conexao);…
-
7
votes3
answers2878
viewsA: What is the best way to verify the existence of a record in the database via application?
Hello, It would be good to put the code used in the application. With access to database I use as follows. Select 1 from tabela where coluna=valor Simple and Functional. Additional Data: Using in…
-
17
votes2
answers9060
viewsQ: Best practice for logging the system
What is the best practice for registering a log system? public void inserirLog(string Acao) { StringBuilder csql = new StringBuilder(); csql.Append("insert into Log (Acao,data) values(");…
-
0
votes1
answer93
viewsQ: Connection with 3g unstable locked in C#
I have a system, which uses a table in mysql to check if there is an update for it, It happens that at certain times, it is necessary that the modem is reconnected so that the system can do these…