LEGAL SYSTEM - ABILJUR

Abiljur System is a product of the New Trust, where Friendship is a partner in the maintenance, installation and deployment of this solution, the system was developed for the control and monitoring of legal cases in the various areas of the law. Contemplating the branches LABOR, civil, commercial and others. Dynamically monitors all the procedures of a process, from initial registration, its phases, their movements, their audiences, even the low end. Its principal aim the service to your customer by providing tools that enable agile flow of information, processes, in all its steps. Uses for this task the various forms of communication like phone control, e-mail and traditional mail.

Drives and queries are easily accessible, greatly speeding up its operation. The operating procedures are supported by various Registers and Auxiliary Tables, which allows greater flexibility and patterning in their movements, in a simple but dynamic.

Screens simple, but complete, part of the system

  • Search Screen
  • Attendance Screen
  • Screen Control Your Folders
  • Screen Control Your Processes
  • Screen Agreements
  • Screen Hearings

Other procedures:

  • Mail Merge
  • Reports
  • Operating
  • Management

It also incorporates a small financial system for the control of his office:

  • Accounts Payable
  • Accounts receivable
  • Forecasts
  • Provisions and Schedules
  • Reports of Support

To schedule a presentation, please contact the New Trust by telephone (11) 2081-2992 or by e-mail mauro@newtrust.com.br

Posted in Abiljur . Tags: , . No Comments »

Downloads

Posted in Abiljur . » Tags: . Comments Off »

Some customers using ABILJUR

Posted in Abiljur . Tags: . No Comments »

Welcome to our new website

After a long time trying to manage our site previously used by the tool, we decided to try something new. And we found in a wordpress content management simple, practical and highly customizable.

After importing the texts published in the previous site, hit the links, access, permissions ... We finally had a makeover.

Welcome.

Posted in Articles . 1 Comment »

SELECT TOP N: MsSQL, Oracle and MySQL

Text taken from pélessê .

MsSQL:

SELECT TOP 10 code, description
FROM Customers

ORACLE:

SELECT code, description
FROM Customers
WHERE rowNum <= 10

MySQL:

SELECT code, description
FROM Customers
LIMIT 10
Posted in Articles . Tags: , , . No Comments »

webCash - v2.04e

  • Complete visual overhaul.
  • Set access permission in the style files.
  • Redesigning the connection wizard to work as an assistant.
  • Improvement in the login screen to catch possible error due to connection and redirect.
  • Treatment to allow restoring the database.
  • Set in the status bar to be positioned fixedly at the bottom of the screen.
  • Spending to create backups with the name prefix.

webCash v2.04e [msi]
webCash v2.04e [zip]

Posted in webCash . Tags: , . 1 Comment »

FileUpload with AJAX

Text taken from pélessê .

This is a common problem, the object FileUpload need of a full postback to receive an upload. It came just AJAX postbacks to suppress these.
So when we have an asp: FileUpload in an asp: UpdatePanel, these postbacks do not happen and when we consulted the property of the FileUpload HasFile we get nothing.
However, we can easily get around this via triggers the UpdatePanel.

<asp:UpdatePanel runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:FileUpload runat="server" />
<asp:Button runat="server" ID="MeuBotao" />
</ ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="MeuBotao" />
</ Triggers>
</ Asp: UpdatePanel>

In the example above, we define the button that makes the trigger must submit the postback, and it does the trick.

Posted in Articles . Tags: , . No Comments »

webCash - v2.04c

  • Routine to apply automatically update versions.
  • To perform routine backups of the database.

webCash v2.04c [zip]

Posted in webCash . Tags: . No Comments »

webCash - v2.04b

  • In the plots, to choose the account if it is a winning card, the date already suggest.
  • Repay the installments, the procedure that examines the discharge status of the document was not working, leaving the invoices still outstanding even without any open portion.
  • Display account description displayed on the screen of cash flow.
  • Extract class of communication with the database, generating external library.
  • Create control to display change history.
  • Improve response autopostback.

webCash v2.04b [zip]

Posted in webCash . Tags: . No Comments »

[DBNETLIB] [ConnectionOpen (Connect ()).] SQL Server does not exist or access denied.

Text taken from pélessê .

It occurred to me sometimes, when trying to establish a connection against the database, get that return. I check and recheck the connection string and everything seems to be correct. In the Firewall port 1433 is properly released. In SQL Server configurations, protocols for network enabled. Everything right.

Today I was an even more unusual. I created two connections against the same database SQL Server 2005. A using the SqlClient and the other using the OleDb. Same user, same password, same everything. What was used the SqlClient to OleDb not. I cabrero.

After picking up a bit, decided to try the DNS or IP to refer me to the server. Since the connection was being made to a SQL Server installed on the machine itself, had taken the liberty of using the constant (local) as server name.

Buzz In Fly's Eye ... was ... just use the DNS (or IP) of the machine instead of using the constant that was located OleDb.

Posted in Articles . Tags: , , . No Comments »