topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday September 19, 2026, 7:11 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 36 37 38 39 40 [41] 42 43 44 45 46 ... 73next
1001
Living Room / Re: A Funnier IE6 Story
« Last post by Target on February 02, 2011, 08:29 PM »
You have my deepest sympathies. :(

I've done a lot of work with custom browsers and whatnot. I really think it's a better direction than staying with an outdated browser. If you need something specific as an application, you really shouldn't be going browser-specific because browsers just get out-dated. If you can spin it all off into a custom browser, then you're set -- a dedicated purpose browser that doesn't interfere with your main browser. Sigh... Just my $0.02 on the subject.

yeah, but why go to the trouble of sourcing or developing a dedicated browser when there are already plenty of choices available

I always thought browsers were supposed to be (more or less) content agnostic, so the idea of a a developer tying their app to a single version of a single browser seems somewhat, errrm, 'short sighted'...(then again, maybe not...)
1002
Living Room / Re: A Funnier IE6 Story
« Last post by Target on February 02, 2011, 07:48 PM »
I've got a better one - company I work for still uses IE6

and they can't 'upgrade' because some of the apps they've developed are incompatible with other browsers(including other versions of IE...)
1003
General Software Discussion / Re: Word Processor OS
« Last post by Target on January 23, 2011, 05:10 PM »
No distractions until you receive a non-identifiable "PC LOAD LETTER" error ;-)

my only issue with this solution is that the font it comes with is terrible
1004
General Software Discussion / Re: Word Processor OS
« Last post by Target on January 23, 2011, 04:59 PM »
there's always the analogue solution - always on, instant availability, no distractions

notepad_and_pencil.jpg
1005
You sure they don't just get pasted in a collapsed state??

nope, you get the collpsed data only

note that it can get really confusing when you go the other way, ie copy data TO a sheet with hidden rows or columns
1006
I really don't understand why MS doesn't get .NET into MS Office already. You can use it in SQL Server, so why not Office? VBA is, well, painful in comparison.

I couldn't comment on that one, though as with many things MS's reasoning defies most accepted forms of logic. 

VBA got me started on coding and I don't know C (in any variation).  From a user perspective .NET seems to be a significant piece of bloatware (who wants to download and install a huge - up 250M -  piece of extra software just so they can write or run a macro...)

That said I'm not averse to learning C, I just don't have a reason at the moment
1007
It would be interesting to know how you go... I've got lots of Excel and Word toolbars around the building and we're looking at upgrading shortly...
I only have the one, but it's used all over the country.  If and when I do something about it I'll let you know 8)

Turns out the ribbon is easier to work with than I expected - had some downtime on Friday because of a systems outage so I spent some time on this

As usual the VBA help file is, well, less than helpful.  The info may be there, but I clearly don't know the right questions to ask.

A google search turned up several references but this one did the trick. 

Everythings in XML, and while I won't pretend that I know anything about XML structure or syntax, the structure as used is pretty straight foward. 

Greatest aid is the Custom UI Editor for MS Office (get it here).  It will generate sample code, includes a code validator, and will generate the necessary VBA stubs for you (you need to copy and paste into the editor if you're going to use them).  That last bit is worth noting - it took me a while to twig to the fact that there is a parameter you need to add to the called routines to make the buttons work properly.

No doubt there's more to the whole ribbon interface, but I only needed to get a new tab on the bar for my macro's so that's as far as I've taken it (but YMMV)
1008
Why not? The square is not that far away...

I simply don't have the power

Some people are just too chicken, and always ask Y they must X the road...

it's because the cars sometimes don't algebraic in time
1009
On the plus side, at least it wasn't done under the table.
-cranioscopical (January 10, 2011, 11:22 PM)

but we never did get to the root of the problem
1010
It would be interesting to know how you go... I've got lots of Excel and Word toolbars around the building and we're looking at upgrading shortly...

I only have the one, but it's used all over the country.  If and when I do something about it I'll let you know 8)

FYI you're old toolbars will still showup, just not like they used to (they appear under the ADDINS tab of the ribbon, and they can be attached to the quick launch bar)

I have mixed feelings about the 'upgrade' - there are good things (substantially larger worksheets for one), but the interface changes are so drastic that my productivity took a huge hit (this has been discussed elsewhere).  Even 2 months on I still have to go searching for things I used to use all the time
1011
You shouldn't have been on your cell!

I was only there to help her with her division

1012
For anyone that has spent an hour trying to explain over the phone how to open a file... and failed... hehehe -- yeah... it happens... Sometimes ya gotta just pick yer battles. :)

i think you meant bottles...
1013
the code could go in personal.xls to always be available

actually the easiest way is to put it in an addin (XLA) - save it to the XLSTART directory and put a button on the toolbar...

don't know about that last bit in versions past 2003 (we finally got 'upgraded' about 2 months ago and I'm still struggling with all those productivity gains...)
1014
And I suppose you told him you sweated blood to get them there…

no, but it sure gave me pores when she said it...
1015
Nope. Not possible. Like I said, "A fellow I work with is not very techno-savvy." :P :)

He'd have to do WAY too much BS to get things working. He can copy, and he can paste, and he can click. Macros? Waaaayyyy out. Get him to copy concatenation formulas (and have dependent cells)? Not gonna fly.

Nope. This was a quick hack to help him get column concatenated quickly without any extra information being needed.

It's hard working with anything in Excel given the funky way that Excel works with the clipboard, so there's that extra step to de-focus/de-select in there, but that's the only thing that's kind of icky.

But normally, yeah -- there are many other ways. This is just designed to work for a particular work-style.

Seemed like you were cracking a walnut with a sledgehammer is all, but I figured there was probably a reason.

I still think it could be done without the copy and paste steps via a macro, but I suspect the user will be using this on lots of different source documents

<rant>
Actually this sort of thing really burns me.  I have more than a few colleagues like that (I had someone doing important calculations ask me what the numbers in red were...) and even though they work with Excel all day every day they can't or won't take the time to learn some basics that will make their (working) lives easier
</rant>

1016
sorry, don't mean to critical, but couldn't you have just used a concatenation formula (=columnA & columnB & columnC)?

you could use a VBA macro to fill it in and paste the values (no dependencies, apart from Excel)
1017
General Software Discussion / Re: Word Processor OS
« Last post by Target on January 09, 2011, 11:40 PM »
what about booting to the command line?

you can EDIT, and no doubt there are other CLI editors...

no distractions (unless they waste time drawing ASCII art...)
1018
Living Room / Re: DC Demographics
« Last post by Target on January 09, 2011, 05:41 PM »
all hail dilbert...

080508.gif
1019
you can easily do this in AHK (and probably AutoIt)

see iniread and iniwrite in the documentation
1020
Living Room / Re: most weird Ctrl key issue *ever*?
« Last post by Target on January 05, 2011, 07:29 PM »
what about hotkeys?

could another app be stealing using that key assignment?
1021
Living Room / Re: USB hubs - does anything like this exist?
« Last post by Target on December 30, 2010, 05:11 PM »
cool, thanks!!
1022
Living Room / Re: USB hubs - does anything like this exist?
« Last post by Target on December 29, 2010, 07:34 PM »
I wouldn't call it acceptable, there's a risk of destroying the USB device or you may have the two computers fighting each other if the voltage supply isn't exactly the same.
Since you'd be having one powered port anyway, (for external 2.5"), you might as well power them all externally - plus it's so easy :)

I prefer to leave the USB devices powered and just switch the data lines, there's less chance of a voltage spike being induced into the data lines that way.

<light goes on> :-[

Did you mean don't ?

I do :huh:

Possibly just a couple of CMOS/TTL chips wired to input/output lines, the problem being looking through specs to find what's capable of >480MHz switching.  I'd need to look through my circuit library and check the web to get a better idea and see how critical it'd be.

See my edit to above post also.

now I'm curious about you're beneficial solution (are we going into manufacturing?)
1023
Living Room / Re: USB hubs - does anything like this exist?
« Last post by Target on December 29, 2010, 07:07 PM »
Yes, you can try a 2-pole, 2 position switch and just switch the data lines.  Power the hub from an external source so you're not switching the power lines as well.  Leave the ground connected back to the computers but not the +5V.
You might need some kind of buffering, (not the data type - more to debounce the change-over), but you can certainly try it without first.

that's more like it :Thmbsup:

so is it acceptable to leave both power lines connected concurrently?  I haven't looked at the pinouts yet, but I assume this from your comments

and how would you 'buffer' the change over?  I don't anticipate that I would be switching while anything critical was running so I do expect it would be an issue, but now I'm curious
1024
Living Room / Re: USB hubs - does anything like this exist?
« Last post by Target on December 29, 2010, 06:25 PM »
A simple toggle switch to the control lines of a Quad Bilateral Switch, (4066 CMOS or 74HC(T)4066 TTL), is a relatively simple way to do it and it would be self-powered.  However, I'd look at making all the ports powered via external means.  You're talking about 12 ports, if they are all occupied at a relatively modest power consumption of 100mA, even with 1 powered that's still 1.1A, over twice the specified current sourcing for 1 USB port - which will be where it's coming from.

A more interesting way would be to use a micro-controller, (eg. PIC, Atmel), to monitor the incoming PC USB data lines and through-switch to the devices - more interesting but maybe not more practical since, (as mwb1100 said), Windows would need time to identify all the devices before data could be sent through, so you'd need to incorporate some sort of RAM buffer I'd think or message back to the OS to hold until device ready is signaled.

HA! once a tech, always a tech

my electronics knowledge is rudimentary at best so that's possibly beyond my current abilities (seems like it would need some sort of control circuit to make it work) - I was thinking along the lines of a simple (analog) type switch
1025
Living Room / Re: When you make your 100'th Post
« Last post by Target on December 29, 2010, 05:40 PM »
Yeah, it really is too bad that I usually don't wait for a day or two, before answering, but so often "I let my mind wander and it didn't come back" (another thesis by Calvin)! 8)

that's why it's called a retortoolate...
Pages: prev1 ... 36 37 38 39 40 [41] 42 43 44 45 46 ... 73next