|
Possible Duplicate:
How to programmatically get DLL dependencies
On Windows, in a C++ program, I want to know if a given DLL (I know the path) is loaded by a given external process (I know the path of the exe), using win32 functions. It must be possible...
Started by Fabien on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use the EnumProcesses function ....
First you have get the ID of the Process you are looking for .
I don't know if this will solve your problem, but as i see it will solve, take a look: Determining Whether a DLL or EXE Is a Managed Component
Best Regards .
|
|
I need to start at a year-month and work out what the date it is in a given week, on a given day within that week..
i.e
year: 2009 month: 10 week: 5 day-number: 0
would return 2009-10-25 00:00:00 which is a sunday. Notice week 5, there is no day 0 in ...
Started by Sean.C on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The number produced by the weekday datepart depends....
The weekday (dw) datepart returns a number that corresponds to the day of the week, for example: Sunday = 1, Saturday = 7 .
Can you use T-SQL stored procedures? If so, DATEPART would be the function to use .
|
|
M = Model.find(1);
m.class_name would give you "Model"
If we have:
m = Model.find(:all);
How do we get the name of the model from m alone?
Started by kumar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Get the class of the first entry in the returned array
m.first.class
If you mean, how do you aggregate them all, since you are actually returning an array of Model objects, I recommend this:
Model.find(:all).collect(&:model_name)
This should give you... .
|
Ask your Facebook Friends
|
Module M Class C end end
What I need is something like:
M.was_defined_here?(M::C) M.classes.include?(M::C)
Does this exists somehow?
I know I could parse M::C.name. But someebody could have the idea to change Module#name, to make it more astetic or something...
Started by johannes on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
M.constants.map {|c| M.const_get(c)}.include?(M::C)
Or, from johannes' comment, using find (will perform better if the class does exist in M and doesn't happen to be the last constant in M - though it should rarely make a measurable difference):
M.constants... .
|
|
I'm on .NET 2.0, running under Medium Trust (so TimeZoneInfo and the Registry are not allowed options). I'm asking the user for two dates and a time zone, and would really love to be able to automatically determine whether I need to adjust the time zone...
Started by bdukes on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
In which case, have you considered reflectoring the TimeZoneInfo class and using what you find there?
@ Domenic ,... .
Well, since TimeZoneInfo is excluded, you're probably not going to find a solution in the framework itself (but don't quote me on that) .
|
|
In my application I have a variety of date sequences, such as Weekly, Monthly and Annually. Given an arbitrary date in the past, I need to calculate the next future date in the sequence.
At the moment I'm using a sub-optimal loop. Here's a simplified ...
Started by Olly on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Date = Date.today date.advance(:weeks => 1) date.change(:days => 7) # =&... .
ActiveSupport introduces the calculation module which provides an helpful #change method .
Because you tagged this question as ruby-on-rails , I suppose you are using Rails .
|
|
This is very similar to a question that has already been answered (that I can't re-find right now) but the answers only let you get the nearest entry when you have a full date (year, month and day).
Started by Binarytales on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Given '2009.
But, for example, given consideration is what to do if more than one date is equally distant from the reference.
A simple ABS(DATEDIFF()) might be exactly what's needed.
But should work though.
|
|
Given a region defined by a rectangle and a url, is there any way to determine what elements lie within the given rectangle on the page at the given url?
EDIT: Screen resolution, Font size, etc.. can all be set to reasonable defaults.
Started by Paul Wicks on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Get the document....
Browser Type.
Browser Font size.
Some things you need to consider:
Screen Resolution.
It is fairly simply to get going.
I'd recommend the QT implementation of webkit.
Perhaps, but you would nee to use a full browser rendering engine .
|
|
I am assuming Java has some built-in way to do this.
Given a date, how can I determine the date one day prior to that date?
For example, suppose I am given 3/1/2009. The previous date is 2/28/2009. If I had been given 3/1/2008, the previous date would...
Started by William Brendel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The java.util.Calendar class allows....
Calendar cal = new GregorianCalendar(); cal.setTime(myDate); cal.add(Calendar.DAY_OF_YEAR,-1); Date oneDayBefore= cal.getTime();
Doing "addition" in this way guarantees you get a valid date .
Use the Calendar interface.
|
|
Is it possible to get the application data directory for a given user who is NOT the user running the program in C#?
Started by Jens K. on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Given admin permissions, you should.
It should work 99% of the time, but might fail on rare occasions .
|