0
votes
1answer
22 views
Which configuration properties are new in Firefox 3.6?
Hello!
Now in beta-stadium, I suppose, Firefox 3.6 will not change much.
I wonder, is there somewhere a list of new configuration properties (from version 3.5 to 3.6)?
I mean th …
2
votes
1answer
34 views
DataTable.GetChanges() keeps returning NULL!
I am trying to get all the rows that exist in allData but not in removeData
public static DataTable RemoveDuplicateRows(DataTable allData,
DataTable removeData)
{
remove …
0
votes
3answers
41 views
add every update, delete, insert query to a new record in mysql
Is there a way that if there's a change in records, that a query that changed the data (update, delete, insert) can be added to a "history" table transparently?
For example, if my …
0
votes
5answers
64 views
How to check if pdf was modified
I have a pdf generated by 3rd party system. Using pdf editor or els software I have modified it.
Is it possible to detect if pdf file was modified, without original file?
0 vot …
1
vote
4answers
53 views
What’s the best way to implement tracking changes on your entities?
The requirement is to track all changes made to an entity, track it to know who did it, when he did, etc. For example, I have a Person entity, and a user has change the name of the …
1
vote
1answer
20 views
How to determine if an Entity with relationship properties has changes
Dim myEmployee as Employee = myObjectContext.Employee.Where("it.EmployeeID = 1").First()
The following line will cause e.EntityState to equal EntityState.Modified :
myEmployee …
1
vote
5answers
189 views
What Design Patterns do you implement in common Delphi programming?
Hello fellow programmers,
As I'm a learner and user of design patterns and Delphi I would like you to ask a question which you may find subjective (Ooo just another "what's the be …
0
votes
4answers
1k views
Is it possible to open a PDF inside a c# application with Acrobat.dll?
I know that I can display a PDF file in my c# executable (not web app) with:
private AxAcroPDFLib.AxAcroPDF axAcroPDF1;
axAcroPDF1.LoadFile(@"somefile.pdf");
axAcroPDF1.Show();
…
3
votes
5answers
239 views
Tracking changes to a (functional) design document
Hi,
I am looking for a good way to keep a design document up to date with the latest decisions.
We are a small team (two developers, game designer, graphic designer, project mana …
10
votes
6answers
421 views
Emacs - Highlight buffer modifications
It often occurs that a file buffer is modified (duh!). Before exiting, emacs asks whether to save the changes. Now it would be interesting to know what actually changed. Is there a …
1
vote
5answers
386 views
how to watch FS for change
I'm doing a project in a course at my university on distributed systems. I'm planning on creating something similar to Dropbox ( getdropbox.com ), but with some sort of non-central …
1
vote
3answers
91 views
Keeping track of changes I make by copying project folders.
Hello, I'm a beginner so if there is a terminology for what I'm doing I don't know how to search for it. So forgive me if this has been asked before. So here is what I do. Before I …
2
votes
4answers
108 views
Implementing a history feature à la Wikipedia
I am writing a Web application that has a user interface for editing documents. What is the best way to implement a history feature like Wikipedia's where edits to a document can b …
1
vote
7answers
411 views
Is there a tool to DB Diff on ‘data’ for an ORACLE database?
We have an ORACLE 10g database with 100+ tables. The software used against this database is an order entry system.
We are looking for some software (preferably free) or script whi …
1
vote
3answers
213 views
How can i track changes in content on a html page after page has loaded
Hi,
I'm wracking my brain on this one.
After a html document loads in a browser,I want to be able to monitor
the page incase any content on it changes for any reason.
Is there …
