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 Chriss Miller 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: AtomicChip
  • Content: Threads
  • Order by date
  1. AtomicChip

    %?string%

    Hi all... I have a SQL connection that is being made in the following format: Data Source=%?server% This is just a plain string that is passed to a SqlConnection object. Can anyone tell me what the %? is for? My guess is an environment variable, but as I said.. It's a guess... Thanks...
  2. AtomicChip

    Local Settings/Application Data

    Is there a way to retrieve the [user]\Local Settings\Application data directory through cmd.exe (environment vars, etc.)? ----------------------------------------------- "The night sky over the planet Krikkit is the least interesting sight in the entire universe." -Hitch Hiker's Guide To The...
  3. AtomicChip

    Application Data Directory

    Hi all, I'm sure there's an easy way of doing this... Is there an Win32 API call to get the path to the application data directory? (i.e. C:\Documents and Settings\dbrecht\Local Settings\Application Data\...) Thanks in advance. ----------------------------------------------- "The night sky...
  4. AtomicChip

    .dll path

    Hi all, I'm writing a .dll for a 3rd party application. Is there a way to get the absolute path to the .dll (not the application)? Thanks ----------------------------------------------- "The night sky over the planet Krikkit is the least interesting sight in the entire universe." -Hitch...
  5. AtomicChip

    Design concept feedback

    Hey all, I'm just about complete an inital design for my new personal site... I'm strictly looking for design feedback (colors, layout, etc.) as design is my weakest point. The site will be flash (ok, go ahead and flame me for it ;)) and the pic will be a video... Please don't pay attention to...
  6. AtomicChip

    Win32 project - Open cmd & print output

    Hey all, I'm assuming this can be done with the system("cmd") call or something like that.. Only problem is, how to I then turn around and get the handle to that window, or output text to it? I'm assuming it's something pretty straightforward that I'm missing...
  7. AtomicChip

    char - '0' == int??

    Hey all, Just looking for an explanation of how and why this works: const char* foo = "123"; int n = foo[ 0 ] - '0'; // resulting in the int value 1 Now, I understand that C++ will do auto type-casting 'n stuff like in the following example: const int n = 3; const float m = 1.1; const int...
  8. AtomicChip

    DirectSound for Fourier Transforms?

    Hi all, I'm in the midst of researching for a project that I'd like to tackle... I'm wanting to use OpenGL or DirectX to display random images (perhaps using fractal geometry or something of the sort) using Fourier transforms (real-time audio frequency analysis). Now, I'm not wanting to write...
  9. AtomicChip

    Memory Addresses

    I feel a little sheepish about asking this question, but let's say I have a doc that says something I need is at memory address 0400:0130h... How do you go about converting that into hex so that you can declare a pointer something like: unsigned char* pMemLoc = (unsigned char*)0x06000000...
  10. AtomicChip

    Linked Lists

    Ok... This question may seem a little basic, but it's something that's been eating away at me for a little while... When implementing a linked list, most tutorials on that interweb thing show a list's node structure something like the following: struct Node { int data; Node * next...
  11. AtomicChip

    Reading little-endian format numbers

    Alright... I'm a little confused (..not to mention tired, which may be a driving factor behind my not being able to easily figure this out right now..), but how would you go about doing this (using only c-runtime stuff... no stl or anything please!): I'm reading the following from a file: FA...
  12. AtomicChip

    Site Review

    Looking for comments about unfinished site... Couple notes: the logo isn't completed yet and it's hosted on my home machine - REALLY slow upstream so pls bare with it. http://www.baselinespub.com/ http://tek-tips.com/viewthread.cfm?qid=1168934&page=1 was my post regarding the layout... Thanks...
  13. AtomicChip

    To use or not to use runtime sharing components...

    So I'm doing a website... (who isn't? ;)) and I'm trying to decide whether or not to use runtime shared components (using AS 2.0) I really like the modularity aspect of the shared components, but here's a couple problems that I've come across while using them - hopefully somebody else here has...
  14. AtomicChip

    Site design review

    Hey all, I'm not a graphic artist, so I appreciate any help and/or suggestions. I just have a .png of the base site template and I'm looking for any feedback on the logo and the template graphic. http://demianbrecht.com/sites/main.png Thanks in advance, AtomicChip...
  15. AtomicChip

    Nested classes

    Aiight... A question involving good 'ole data structs (...and nested classes, as the title there would hint ;)) Let's say I have a class DoubleLinkedList. Within that class, I have a nested class (Iterator). I want to keep this as close to the STL implementation as possible (this is a lot more...
  16. AtomicChip

    To use or not to use STL in games

    Hi all, I'm not entirely new to C++ programming, but I'm not entirely familiar with compiler processes 'n stuff either... I've been told that there are downfalls to using the STL in game programming - what are these downfalls? Memory overhead? Footprint size? Or do these only really apply when...
  17. AtomicChip

    Splash Design

    Ok, I'm having real difficulties with which splash page to go with (it's just a "coming soon" splash right now, but I'll be using it as my site's actual splash page): http://demianbrecht.com http://demianbrecht.com/index2.aspx The first one is a design I did last week. Since then, I've decided...
  18. AtomicChip

    Yet another site review :)

    Hey all, Please feel free to tear it apart (it's my personal site) ;) It's not totally completed yet, just looking for look 'n feel feedback. http://www.demianbrecht.com ----------------------------------------------- www.liquidfuzion.com "The night sky over the planet Krikkit is the least...
  19. AtomicChip

    Web developers beware

    Just a quick FYI for all internet developers out there- Cookie manipulation (up to this point) to my knowledge has been a tougher task than the average user is up to. What I mean by cookie manipulation is editing existing cookie values. For example, let's say that once a user has logged in...
  20. AtomicChip

    Memory Leak?

    Hello all, I have recently encountered what looks like a memory leak within SQL server, but may be a number of other things as well - I'm hoping that some of you may have encountered this problem as well so I may be able to narrow down my list of possible culprits. I noticed this morning...

Part and Inventory Search

Back
Top