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 d0s

  1. d0s

    vb.net UDP client

    Hello, does anyone know how i can make a vb.net app to connect to a server on a certain port and read from files to display on the vb app?? Im wanting to make a gaming config program that will display the game servers current config by reading the .cfg files and going to make it to where i can...
  2. d0s

    Retrieving game server info

    yea already been trying that..but nevermind i figured out a new way of solving this problem
  3. d0s

    Retrieving game server info

    Just an update. I pretty much found all the variables for call of duty 4 that i need. Like for the hostname display the variable is sv_hostname and if pb is enabled it sets the variable to 1. So i pretty much know which variables to retrieve info from or to send to, i just need to know how i can...
  4. d0s

    Retrieving game server info

    Hello, Im wondering if anyone knows how i would go about retrieving information from my server for call of duty 4? im writing this in vc++.net 2003. I want to retrieve various information like how many players are on the server, names, pb enabled or disabled etc...Im also going to be doing...
  5. d0s

    Skins Program

    aight i decided to create a program so people can change skins for a program without having to copy/paste the .bmp's and .jpg's ...not to mention alot of people wouldn't know how to do that. So im just wondering what would be the easiest route to doing this? i thought bout maybe having themes...
  6. d0s

    CreateProcess

    aight didn't think you needed the whole thing but here it is.. STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory( &si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory( &pi, sizeof(pi) ); if (!CreateProcess( "app.exe", " +connect " && textBox1->Text, NULL, NULL, FALSE, 0, NULL, "C:\"...
  7. d0s

    CreateProcess

    does anyone know how i can add input from a textbox to the 2nd parameter of CreateProcess(the command line)...right now i have the executable name in the first parameter, then i have " +connect ", in the 2nd ive tried doin this but got an error: " +connect " && textBox1->Text, and i get the...
  8. d0s

    Missing header file (corrupt???)

    http://www.microsoft.com/downloads/details.aspx?FamilyID=afd04ff1-9d16-439a-9a5e-e13eb0341923&displaylang=en
  9. d0s

    Win32 API

    ahh...ok then all u need to do is learn up on C++ read some tutorials and help files...no there isn't a different syntex but you wont be using all the code you used when making a console application..pretty much you need to create code for user input..like for example if you were creating a...
  10. d0s

    Win32 API

    i started doin win32API programming and it became a big headache. You'll have ALOT of lines of code just to make the window application with no features, just a plane window with borders. If you want to get into making windows programs with interface i would suggest buying(yes i said buying)...
  11. d0s

    GetObjectA error

    Hey, im creating a small program and for some reason whenever i include windows.h and change the icon usin VC++.NET options to change the icon of the program i get this error: Form1.h(135): error C2039: 'GetObjectA' : is not a member of 'System::Resources::ResourceManager' and thats generated...
  12. d0s

    VC++ Help Code

    yep im using that exact code..i was just meaning i wasn't using the .83 opacity i was using like. .75 and .25 ect.. here is the code within the function straight from form1.h private: System::Void button4_Click(System::Object * sender, System::EventArgs * e) { public: void...
  13. d0s

    VC++ Help Code

    Ok is it just me or does visual studio's code when u search a topic not fully coded? im probably not wording this right but i'll try to explain. I was just doing some searches through Visual Studio's search engine with Visual C++ filtered. I came across setting the opacity of your program from...
  14. d0s

    GUI question

    imma post another question here instead of starting new thread since its same subject..Ive searched everywhere for using Windows forms and im havin a hard time figurin some things out...like I created an about dialog box and im trying to set it so that it will open when the person clicks on the...
  15. d0s

    GUI question

    ahh sweet thats exactly wut i was lookin for...Thanks Bartec..oh and thanks for the DirectX question too..never did thank u for that

Part and Inventory Search

Back
Top