Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
4k views

Implementing Audit Trail for Objects in C#?

I'm looking for ideas on how to implement audit trails for my objects in C#, for the current project,basically I need to: 1.Store the old values and new values of a given object. 2.Record creation of ...
3
votes
3answers
3k views

using a UIView as MKMapView subview to draw a route

Before anything i'm sorry for my bad english. I'm trying to draw a route in a UIView and set that view as a MKMapView. Now i have a UIView class (ViewClass) where i put all the touches methods and ...
3
votes
3answers
762 views

How would I use an audit trail to display which fields have ever been edited?

For a project I am working on, I have been asked to create an audit trail of all changes that have been made to records. This is the first time I have had to create an audit trail, so I have been ...
2
votes
1answer
235 views

Solid deformed shape mouse trail in AS3

I'm trying to duplicate this type of mouse trail. I can't tell if it's deforming a movie clip or drawing separate objects on the stage. I can duplicate it at slow speeds, but at a fast speeds I have ...
2
votes
1answer
40 views

React differently if second time user visits domain

I am working on building a Kynetx app that fires a different action on a domain if it is the second time a user has visited the page. I think I need to use a persistant trail to mark when a user ...
2
votes
1answer
327 views

Audit trail: Web application

I am working on an audit trail project where we have been told to following. Track all the tables (200+) in our db with shadow tables just as Hibernate Envers does. It follows that we have create ...
2
votes
1answer
668 views

Trail effect with jQuery?

Can this be done ? Basically I want to animate an absolute-positioned image with right:xxxPX, let's say. Well, when the animation is in progress, can I add a "trail" effect to it? Thanks, Adrian
1
vote
0answers
68 views

Android gesture trail effects

I am implementing a custom gesture library, so I will be using GestureOverlayView, and I was wondering if there was any way to apply effects, like a sparkle or glow effect to the trail that the ...
0
votes
0answers
36 views

How to find the longest (heaviest) trail in an undirected weighted graph?

I have a US spatial map connecting cities with weights (distances). I'd like to find the longest (most weighted) trail in this map. each edge is visited 0 or 1 times each node can be visited [0, ...
0
votes
1answer
64 views

Audit Trail of JSP screen fields

We have a web application developed in JSPs. We have to perform audit trail for every changed field in the screen. The audit table should contain the following columns: unique_id, old value, new ...
0
votes
2answers
51 views

Pygame how to fix 'trailing pixels'?

In the image the red trail is a trail that pygame is creating when I have a bounding rectangle added around sprites. The sprite also does it and the simplest solution was to just clear the surface ...
0
votes
2answers
71 views

Count number of trails and live based on a month in SQL

Please HELP!!! I have the following table in my database where [start date] and [End date] data type is in datetime CompanyID ServiceStartDat ...
0
votes
1answer
681 views

How can you tell MYSQL to TRIM the X number of characters, beginning from the Back?

How do I write the following in MYSQL? SELECT SUBSTRING(value - (1 TRAILING CHARACTER)) FROM table; Basically substring(value, 2) trims the first letters. But I need to trim the last letters. I ...