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 TouchToneTommy 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: *

  1. csteinhilber

    CF and rudimentary Facebook

    Thanks Falconseye. There are actually CF conversions of similar code (and existing CF libs and CFCs) already, so that isn't really the problem. My issue is I'm having trouble wrapping my brain around Facebook's insistence on making this thing an "application". When I go to the Facebook...
  2. csteinhilber

    CF and rudimentary Facebook

    Rather than a full-on Facebook widget on my client's site, I'd like to have a simple div that lists the number of Fans/Friends for their corporate Facebook userid. I was hoping to just accomplish this via SOAP or other HTTP request, server-side, using ColdFusion. But it appears that the older...
  3. csteinhilber

    FlashLite - disable keypad beep?

    I've created a FlashLite (2.0) app for my Nokia phone. Everything works nicely, except that it's an app that requires a lot of keypad manipulation, and every time I press a key I hear a system "beep"... to the point that it gets incredibly annoying. Wondering if there's any way to disable the...
  4. csteinhilber

    Iterate over open apps/documents

    I work at an agency, and I find I'm really bad about keeping track of my time... even with time tracker utilities. So I'm trying to write an app that automatically tracks how long I spend in a given file so I can begin to build an initial picture of how I spent my day and what I was working on...
  5. csteinhilber

    Iterate over open apps/documents

    Thanks Glenn... That works nicely for most apps, except the two that I really need ;-) - Photoshop and - Dreamweaver Dreamweaver might be a lost cause. I'd love to be able to get a list of all the files I have open... but since it's a custom IDE with a tabbed control for files, I might...
  6. csteinhilber

    Iterate over open apps/documents

    I'm trying to write an app that can take a snapshot at any given time and provide a list of documents (preferably using the Window Title text) I currently have open. Part of the trick seems to be that some of the documents are going to be parent windows, and some are going to be in MDI...
  7. csteinhilber

    Concat multiple rows in subselect?

    Most excellent, Rudy! Thank you so much! So simple, even I can understand it ;-) -Carl
  8. csteinhilber

    Concat multiple rows in subselect?

    Alright, I'm pinned in one of those situations where the legacy database is not designed as I would've done it, yet I still have to get the desired data out. I have a "jobs" table, "locations" table, and "departments" table. There is a 1:1 of jobs to locations (job can only be in one location)...
  9. csteinhilber

    Setting parameters with spaces in the name??

    I'm using a nice little commercial component (.mxp) in a current project. I want to adjust one of the components parameters using ActionScript... but the flippin' parameter is actually named with a space in it's name. At least, that's how it appears in the Parameters tab in the Component...
  10. csteinhilber

    Making DIV ignore mouseover events?

    I'm going to break the cardinal rule of forum posting, and not post any code here, because I think I can describe what I'm trying to do better than my current 240 lines of code would... but if anyone really wants to see code, I'm sure I could rustle some up. I have what amounts to a series of...
  11. csteinhilber

    Delphi for ARM?

    Is it possible to develop for ARM5/ARM7 using Delphi? I'm interested in developing (actually, repurposing an old Delphi project) for the Nintendo DS. Not finding any online resources for doing do. Anyone have any ideas? Thanks in advance! -Carl
  12. csteinhilber

    Function return of type FILE

    Thanks, xwb. I could swear I had that in some iteration or other that night. But still no joy. file = GetSaveFile("rb"); gives me a "invalid conversion" error. Have I mentioned I hate pointers ;-) -Carl
  13. csteinhilber

    Help: Reading a U8 from binary file?

    You're right, ArkM. The 2000 was a slip of my fat fingers. Not sure why I didn't get a warning out of that in the IDE, but no matter. Turns out the issue was in my toolchain. So short of anybody else loading up my entire devKit, it would've been impossible to reproduce. I hate toolchains...
  14. csteinhilber

    Function return of type FILE

    It's late, I'm getting punchy, and I know I'm just missing something stupid... but I figured a few more sets of eyes on this would do wonders. I'm trying to create a helper/wrapper function around a file open, such that I can pass in a mode, and the function will return the pointer to the file...
  15. csteinhilber

    Help: Reading a U8 from binary file?

    Thanks for the response, ArkM. Sorry, should've explained... U8 is defined in my toolchain. It's simply an unsigned int8. Not terribly exotic, I wouldn't think. So, I was originally trying to fwrite/fread a struct, but recognized that I wasn't getting out what I put in, so I slimmed down the...
  16. csteinhilber

    Help: Reading a U8 from binary file?

    I'm developing a game I need to save a gamestate for. At this stage, the var I need to save out is stored as a U8: u8 completedLevel; When I save out, I'm doing: file = fopen("save.bin", "wb"); if(file != NULL) { nb = fwrite(&completedLevel, 1, sizeof( u8 ), file)...
  17. csteinhilber

    Restore user after Remote Desktop

    @linney - interesting... I hadn't thought about a group policy. There look to be several policies that might do the trick. Namely "Interactive logon: Do not require CTRL+ALT+DEL". I'll have to play around a little more. @vanka25 - as I said in my original post, rebooting seems like overkill...
  18. csteinhilber

    HWD of windows that was clicked on

    That worked just as advertised, MKuiper. But, yeah, I'm not terribly happy with the BUTTONDOWN on my app then BUTTONUP on the target app. For one, interface-wise, it's a bit difficult to explain. I realized that Windows own SCRIPTIT allows you to drag windows ontop it's "interface" and it picks...
  19. csteinhilber

    Restore user after Remote Desktop

    Further clarification: The system auto-login logs in as LOCALMACHINENAME\juser. When I RDP in, I connect as that same user (LOCALMACHINENAME\juser). When RDP disconnects, the dialog on the remote machine says "The system is locked... it can only be unlocked by LOCALMACHINENAME\juser", and it...
  20. csteinhilber

    Restore user after Remote Desktop

    Sorry... by "login prompt", I mean the dialog that says to "press CTRL-ALT-DEL to login"... not the actual prompt in which one would enter the login info. -Carl

Part and Inventory Search

Back
Top