I use (WPF) synchronized scroll viewer:
http://www.codeproject.com/KB/WPF/ScrollSynchronization.aspx?msg=3577911#xx3577911xx
The main point, I have two datagrids for which I would like to set synchronized scroll viewers. XAML code:
<DataGrid AutoGenerateColumns="false" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
...
It is time to sub-divide a platform I'm developing and I'm looking for advice on how to handle cross-component dependencies. I spose there a many cases, so I'll give an example.
I have an Address class that I want to make visible to developers. It is also referenced by classes in my.Contacts, my.Appointments, and my.Location packages ...
I'm about to extract major functionality of a larger project into a ruby gem.
The little framework I created uses a few additional gems, for different import/export options. Ie.
FasterCSV (for ruby 1.8) for csv import/export
Nokogiri for csv import/export
GraphViz for graph ...
PDF
...
I don't want users of the gem to install and l...
The dependency matrix of VS 2010 crashes VS 2010 as soon a I try it on my application!
Anyone knows a good VS addin with a solid dependency matrix?
...
Hi,
I have a web application with more than 100 jar files dragged by Maven and things went a bit out of control.
For example, I ended up with 3 versions of Spring core classes which caused the application deployment to fail sometimes (it seems the order of the jars loaded from WEB-INF/lib is not always the same with Weblogic):
spring...
We're developing a web application using Tomcat and a number of other libraries, and we're having issues using the "Java EE Module Dependencies" page in Eclipse to assign dependencies to be placed in the lib/ directory of the webapp. (See screenshot)
The issue we're having is that while most of our projects show up as available dependen...
Is possible to detect automatically source dependency in a NMake makefile using VS 2005 compiler (as actually possible with GNU make and GCC compiler)?
Look at the '-M' option of GCC. Including the outputted text of GCC in the makefile cause to automatically track source dependencies without maintaining them, since the GCC invocation ca...
I have a project that generates a dynamic library "my_library". It depends on an other dynamic library : foo.dll (the library itself) and foo.lib (for compilation).
I would like to rename foo into foo2 (you guessed right : it's just an example :) ).
I know i can rename foo.lib and foo.dll into foo2.lib and foo2.dll and simply recompile...
I'm building a control system for a hardware installation (water circulation system). I've designed it in two layers: the hardware description layer and the control layer.
+----------------------------------------------+
| Control (enables manipulation of devices) |
+----------------------------------------------+
| uses (de...
Hi, I have a solution with 2 projects cira_lib and md5_test. One project (cira_lib) is a central library that compiles to a DLL. The other project (md5_test) is an exe with a dependency on cira_lib. When I build md5_test it builds cira_lib first, so I know the project dependencies are being followed. However when VC++ comes to linkin...
How can I specify optional dependencies in a pip requirements file? According to the pip documentation this is possible, but the documentation doesn't explain how to do it and I can't find any examples on the web.
...
New to the idea of makefiles. Here is my Makefile:
.PHONY: all homework1
CFLAGS= -g -O0 -Wall -Werror -Wno-unused-function
LDFLAGS= -lm
all : homework1
homework1 : program.tab.o program.lex.o
%.o : %.c
gcc -o$@ -c $(CFLAGS) $<
%.lex.c : %.lex %.tab.h
flex -o$@ $<
%.tab.c %.tab.h : %.y
bison --verbose -o$@ -d $<
Whenever ...
Hello,
I've got a solution with ~70 projects, with lots of dependencies between them (I actually made a graph, it had ~300 edges). I know that some dependencies are not necessary. I'd like it to use multiple cores while building, and I guess these unnecessary dependencies might influence on how parallel can the build become.
Basically ...
I wrote a MsBuild Task : MyTask. In my solution, I have the Task project and others projects. MyTask references a project (say ProjA) which references third assemblies, say (dep1 and dep2).
The projects all builds well and I have the outputs in one directory (Compil). In this directory i have all the dll's I want : MyTask.dll, ProjA.dll...
Hi,
I have a maven project with a dependency (datanucleus-db4o). This dependency has itself a dependency on db4o (db4o:db4o:jar:7.12.126.14142-all-java5).
Now maven says:
09.09.10 19:43:09 MESZ: Missing artifact db4o:db4o:jar:7.12.126.14142-all-java5:compile
I am new to maven. Is it right that datanucleus-db4o defines its own depe...
This is in a way a follow-up of a previously unanswered question of mine (link) which excalated over the past weeks, and now it has come to a point where I cant really develop anymore...
So here's the deal; I have more of a mathematics/engineering background than pure CS, so I dont have a lot of experience with proper/large-scale softw...
In case I need to change the PK of a single row from 1 to 10, for example, is there any way to trace every proc, view and function that might reference the old value?
I mean, a simple select in a proc like: select * from table where FK = 1 would break, and I'd had to look for every reference for ones in every proc and view and change th...
Hi there. I've a problem that seems quite simple, but I can't get it done. I have a package with many dependencies and I want to remove ALL of them, regardless wheather other packages also depend on them ( they get removed too ). How can I get a list of all dependencies of a package that I can easily send to xargs aptitude purge ? Thank ...
Hi all,
I use Apache Ivy for handling library dependency. In my company we have a "core" project which is released/versioned periodically. We then have many "customer" projects which are for a particular client. Each customer project uses a particular version of the core project which we maintain in the ivy.xml of the customer projec...
I am implementing Continuous Integration using Cruise control.net and have more than 50 legacy Vb6 .dlls. Some of .dlls are dependent on each other.
For ex: A.dll is dependent on B.dll. All .dlls are complied into one Common folder let say "Bin" and binary compatible. If signature of a method in B.dll is changed, vb6 IDE shows dialog bo...