Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: 0ddball
  • Order by date
  1. 0ddball

    Microsoft Project Crashes! Corrupt .mpp

    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
  2. 0ddball

    Everything equals zero

    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...
  3. 0ddball

    Ensuring Events in Excel

    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...
  4. 0ddball

    Ensuring Events in Excel

    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...
  5. 0ddball

    Ensuring Events in Excel

    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...
  6. 0ddball

    Frustrating Com Issue

    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...
  7. 0ddball

    GROUP BY `pain` HAVING 'headache' = TRUE

    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...
  8. 0ddball

    associative tables, query optimization

    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
  9. 0ddball

    View Reocords (rows) one at a time

    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...
  10. 0ddball

    GROUP BY `pain` HAVING 'headache' = TRUE

    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...
  11. 0ddball

    Running an SQL command on all tables of a database

    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
  12. 0ddball

    GROUP BY `pain` HAVING 'headache' = TRUE

    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...
  13. 0ddball

    MySql and 615 million records

    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...
  14. 0ddball

    Abstract methods in abstract classes

    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
  15. 0ddball

    linear regression

    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...
  16. 0ddball

    Abstract methods in abstract classes

    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...
  17. 0ddball

    Source control - working on projects remotely

    :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
  18. 0ddball

    Abstract methods in abstract classes

    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...
  19. 0ddball

    Source control - working on projects remotely

    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
  20. 0ddball

    Abstract methods in abstract classes

    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 {...

Part and Inventory Search

Back
Top