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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by cromulent

  1. cromulent

    output multiple records as one

    After doing some research, I dont think cursors are what I need. I want to be able to get these values in a sub select statement. Here is my code that doesnt quite work (part needing help shown by an *): Select po_vendors.VENDOR_ID, po_vendors.VENDOR_NAME...
  2. cromulent

    output multiple records as one

    I have not done cursors before so I will figure it out and tell you how it goes. If you have some quick pointers, I could use them as well. Thanks website: http://www.nitrohobby.com
  3. cromulent

    output multiple records as one

    How do I output a multiple record single column as a single record single column delimited by whatever I want? Thanks website: http://www.nitrohobby.com
  4. cromulent

    open app

    I figured it out on my own. Here it is: #include <iostream> #include <windows.h> using namespace std; void main() { string mystring; mystring="Notepad.exe"; ShellExecute(NULL, "open",mystring.c_str(), 0, 0, SW_SHOW); } website: http://www.nitrohobby.com
  5. cromulent

    hourly charge

    I would check what monster.com has to say. They can give you a good estimate based on your skills and location. There are other sites as well that will tell you what you are worth. You just have to find them. websitesite: http://www.nitrohobby.com
  6. cromulent

    open app

    How do I open a different application through c++? For example if I wanted to open Notepad.exe by executing my c++ application. Thanks websitesite: http://www.nitrohobby.com
  7. cromulent

    how many are connected?

    Thanks ceco, that worked great. -A
  8. cromulent

    how many are connected?

    Does postgres keep track of how many open connections there are at any given time? And particularly, how many connections to a given database? I have been using npgsql with c# for a corporate application and would like to get this information from the database. Is this possible? Thanks for...

Part and Inventory Search

Back
Top