I'm not sure about recovering your file - but I can take a guess why it happened.
Don't ever... //ever//... use project on a wireless connection. The slightest glitch and *pfft* gone.
Yet another unchecked rambling brought to you by:
Oddball
I have a problem. One of my users has managed to do something to her copy of Excel and now everything equals zero.
So:
=SUM(A1:Z99) == 0
=4+6 == 0
=SUMIF(A1:A300, "",B1:B300) == 0
It doesn't matter what these ranges contain, it doesn't care. Everything equals 0...
DaveInIowa:
Interesting, but still has the problem that - if the user turns off events during sheet operation then the Close event will not fire and the sheets will not be hidden.
I can't restrict the options of these people because they are all expert Excel users. If someone took away your...
Our current thinking is that we can monitor Excels state through a deployed service. We are hoping that - hooking into excels message queue - we may be able to gain insight into what's going on.
You pretty much said what I thought, there, xlbo. We're going to have to get very creative here...
Does anyone know of any way - by hook or by crook - to //ensure// that a cell change event is fired? Even if people turn off events, disable macros, hold down sift of print it off and use tip-ex on the cell.
I don't care what technologies you use - my resources in this organisation are neigh...
Hi there.
I need help retrieving the type of a COM object at run-time. All the examples I've found assume you know the object type in advance - I need some way to get a list of Interfaces a COM object implements.
It's driving me mad - help!
Yet another...
Ok - seeing as how no one else has come up with an answer, and I've finaly worked it out after two days, added to my massive hatred for people who just post things like "Don't worry - I've fixed it!" and never tell us how...
Here's the answer I came up with:
SELECT
`hitUrl`,
COUNT(*) AS...
Did it work?
Don't forget to give stars if your thread was helpful!! Helps folks like me track down answers to problems so I don't have to ask stupid questions.
Yet another unchecked rambling brought to you by:
Oddball
I think you are worrying unduly.
Ask the dBase server to return the results in order in the first place, then just write all the results to a list.
Depending on your enviroment - you can share the list between users, and create a copy of the information for editing when you need to (to...
I tend not to do this - but I'm going to have to. Bump :(
Does anyone have any ideas on this - if you couldn't dig the question out of all my rubbish - or you don't know - please post and say so!
I feel like I've asked a quesion so stupid no one wants to talk to me...
I know this doesn't help at all - but your database should have maintained these indicies itself. It should be dead easy to recursively delete a user.
I'm done finger waggin - flame me now ;)
Yet another unchecked rambling brought to you by:
Oddball
Good evening, all. I'm trying to re-invent the wheel again purly in the interest of something to do that looks like work and makes me more employable else where.
I'm making a hit-counter that can track exit-points. It's going to do this by spotting the page on which the user was last seen...
Wotcha. Ok - I'm not sure if you've fixed this but I'm doing my bit to search for the answer to my problem before I post and I wondered in.
Have you tried making PHP output timings after **every** line in your code. Just spuck em to the output with titles like 'Before query begin', 'Query...
Sorry I was so brief Marty, I was rusing to get away from work.
Do you have any ideas how to get around my problem?
That page doesn't really help me with my generics problem.
Yet another unchecked rambling brought to you by:
Oddball
Why does this sound suspiciously like homework - actually, a bit tricky for homework - probably coursework.
I'm really supprised it's so hard to find a library to do LR for you, but then... it's not the simplest of things to get a PC to do.
Write your own then post a link to it here. I'm sure...
From the MS website:
// compile with: /target:library
public class D
{
public virtual void DoWork(int i)
{
// Original implementation.
}
}
public abstract class E : D
{
public abstract override void DoWork(int i);
}
public class F : E
{
public override void...
:D Sorry - it's what we call our developer network.
As opposed to the one we let the marketing/art/accounting/sales/etc. spods play on. It's more of a subnet, really.
Yet another unchecked rambling brought to you by:
Oddball
Ok - I've messed up here... let me add some more code and I'll explain my difficulty:
public abstract class BfiDataEntity<T>
where T : class, new()
{
public abstract void SomeMethod();
}
public abstract class Contact : BeIntegrated.Model.Data.BfiDataEntity<Contact>
{
// My problem occurs...
Sourcesafe will do this using its HTTP extension.
Alternatively - for that extra layer of security - log into the devnet using a VPN and use the sourcesafe as normal.
Yet another unchecked rambling brought to you by:
Oddball
Please consider the following:
public abstract class BaseClass
{
public abstract void SomeMethod();
}
public abstract class MidlevelClass : BaseClass
{
// Wants me to implement SomeMethod();
// I don't WANT to implement some method!
}
public abstract class ToplevelClass : MidlevelClass
{...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.