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 Wanet Telecoms Ltd 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

    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...
  2. 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...
  3. 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...
  4. 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)...
  5. 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...
  6. 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...
  7. 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
  8. 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...
  9. 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)...
  10. csteinhilber

    Restore user after Remote Desktop

    I manage several stand alone kiosks; networked, running XP Pro, and set to login to a local user account on startup. Currently each kiosk has a keyboard/mouse to facilitate updates and general maintenance control. My dream is to be able to run all the kiosks without keyboards and manage them...
  11. csteinhilber

    Set up "subdomain only" site?

    We have an intranet that I'd like to be able to allow internal users to access via http://intranet/... rather than the full http://intranet.somedomainname.com/... We run our own DNS servers (one internal, one external). And our IIS currently serves more than one domain (one of which is...
  12. csteinhilber

    HWD of windows that was clicked on

    I'm trying to include functionality in my app that allows the user to click on the window of a target (external) application to identify it (and behind the scenes, I'll determine the window class, executable path, etc). I've seen other apps that do something similar. User clicks a button in the...
  13. csteinhilber

    Can I direct user to their home directory?

    I have a website on a Windows 2003 server, running under IIS, that contains a secure directory (/login). Under that directory are subdirectories for users (/login/aaa, /login/bbb, /login/ccc). The /login directory is set up with permissions to allow access to all defined users (non-anonymous...
  14. csteinhilber

    Querying Exchange for meetings via WebDAV

    Okay, my other WebDAV posting went over 'round here like a lead balloon, so maybe this isn't the proper forum. But I'm simply trying to pull all the meetings scheduled for a particular week in a specific calendar in a given Exchange 2000 public folder. And I'm not having 100% success. I can get...
  15. csteinhilber

    WebDAV search to get last name

    I'm using classic ASP to create a WebDAV search of all appointments in a given (public) calendar. And I'm able to retrieve the creator of the given appointment ("urn:schemas:httpmail:fromname"), as well as their email address ("urn:schemas:httpmail:fromemail"). strDAVsql = "<d:sql> SELECT...
  16. csteinhilber

    Granting access to forms library? How?

    My team has created a series of Outlook forms for use in our organization. They're pretty much just templates for various HTML emails we send out as responses to various inquiries. I've saved the forms to my "User Templates in File System" during testing. But now that everything's baked, when I...
  17. csteinhilber

    ASP working, except on default doc?

    I'm trying to install a new site on a hosted server. The server is running Apache 1.3.33, though it's capable of running ASP (not exactly sure of the method used). However, the DirectoryIndex list obviously doesn't include index.asp files. So I created an .htaccess file to set a new...
  18. csteinhilber

    Exec select on recordset? Or other solution?

    I'm using classic ASP/VBScript. I have a module that builds up an in memory recordset (no DB is immediately available), like: Const aVarChar = 200 Set rs = CreateObject("ADOR.Recordset") rs.Fields.Append "id", aVarChar, 15 rs.Fields.Append "name", aVarChar, 50 rs.Fields.Append "img", aVarChar...
  19. csteinhilber

    EDI (Electronic Data Interchange) with ASP/VBS?

    A client has requested that we communicate ordering information to their central server via EDI. From what I've read, it looks like EDI is primarily a webservice, but I haven't been able to gather much more than that. Has anyone dealt with EDI from within classic ASP using VBScript? Is it...
  20. csteinhilber

    Calendar on intranet

    I'm pretty green when it comes to dealing with Exchange, but I have what I think is a reasonably simple task. To list conference room bookings on my company's intranet. But I've done quite a bit of research online, and I'm left very confused and unclear how to proceed. The set-up: - Exchange...

Part and Inventory Search

Back
Top