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

  • Users: courtarro
  • Content: Threads
  • Order by date
  1. courtarro

    Allowing URL access only after mod_rewrite

    Hypothetical situation: I've got a PHP script: /dostuff.php It takes a parameter "thing": /dostuff.php?thing=monster But I'm using mod_rewrite to make it look better, so the URL I want users to see (and use) is: /dostuff/monster For this purpose I've created a simple rewrite rule...
  2. courtarro

    Proper way to reference build date (a la __DATE__)

    I'd like to include the build date of my app in its About box. Unfortunately the About box class is only compiled whenever it is changed, thus the value of __DATE__ that it uses is frozen even as I make changes elsewhere in the app. When the final app is compiled and linked, the About box's OBJ...
  3. courtarro

    Efficient image resources (not bitmaps?)

    The program I'm maintaining has a large collection of BMP-format resources. As such, the binary is rather large. VS2005 allows me to load GIFs and JPEGs when importing resources, but then it wants to call them custom resources. Is it possible to use a more efficient file format (than...
  4. courtarro

    Handling tabs in unmanaged VC++

    I'm new to VC++ but used to languages/architectures like C#, Flex, VB, etc. In most of those languages, tab controls are handled like containers, where the OS and/or runtime handle creating the tabs, switching between them, etc. It looks to me like VC++ (with MFC) does things at a lower level...
  5. courtarro

    Form.Show freezes if called within event handler

    I have a problem with an event handler that opens a form. The form appears, but it freezes immediately. This doesn't happen for all events, such as those that my other forms create (like menu items or button clicks), but it does happen for the system-based events like FileSystemWatcher and...
  6. courtarro

    Need help with the file system filter sample FSDSPY

    I am trying to build a filesystem filter using CE's FSDSPY as a starting point, but at the moment I cannot get it working. I feel that I'm very close: I have compiled the dll with VS2005, set up the registry to load the filter, and filesys.exe loads the DLL after a soft reset (in the Pocket PC...
  7. courtarro

    PHP Profiler (free)

    I'm looking for an automated profiler for PHP that will give me a GDB-like summary of all function calls and delays caused by those calls. I've seen things like this output from DBG, but I wasn't able to get it running, and there seems to be a horribly scarce amount of "getting started"...
  8. courtarro

    Schema: require attributes based on the value of other attributes

    I have a schema, shown below, for the XML file that is parsed by a form-generating PHP script. It takes the XML file, which has items like this: <field type="text" size="30" /> <field type="textarea" rows="5" cols="40" /> <field type="select" size="20"> <option>red</option>...

Part and Inventory Search

Back
Top