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!

Search results for query: *

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

    .net "cant open file because it is being used by another process."prob

    hello! i just have a quick question: why would it come up with a "cant onpen file because it is being used by another process" exeption? i have some code (much to0 big to post here) that makes one filestream (set to 'index.dat'), then one binaryreader from that stream. the reader reads...
  2. A1METALHEAD

    cstring to char*

    are there any convertions between CString and char*? i hate CString... and i need a way to get a char*... thanks, ~metalhead
  3. A1METALHEAD

    help with streamreader!

    ok, i have VC++ .net 2002 and i am trying to parse a text file. so far i cant use the way i used when i wrote this in C# with the streamreader. this is my code: FileStream* fs = new FileStream("c:\\database.txt",FileMode::Open); IO::StreamReader* sw = new StreamReader(fs); String*...
  4. A1METALHEAD

    network programing

    hello. is there anyway to look for all the servers on a network? for example: i have a server peorgram and a client program. can i have many different servers listing on the same network (and i dont know there IPs) and have a client (on the same network) find all of them without having all there...
  5. A1METALHEAD

    another problem...

    i am using visual c++ 6 to create a text adventure game. i have multipal headers and most have corasponding source files. one of the headers that dont is a header that i include in all cpp files. it has all the includs(like iostream and windows.h). the other is a header that just holds...
  6. A1METALHEAD

    using a dll?

    hello, i have some classes and functions i would like to put into a dll so i add all this code to another project, and override twofunctions on one of the classes. dose anyone have a tutorial for that that has nothing to do with visual c++?(as i am using devCpp) thanks ~metalhead
  7. A1METALHEAD

    two things...

    hi. i have been trying to find a way to change the text color, and the background color of spacific text. i have found the following example: #include "conio.h" int main(int argc, void** argv) { textcolor(LIGHTGREEN); cout << "Hello World!!!" << endl; textcolor(LIGHTRED); cout...
  8. A1METALHEAD

    my SQL?

    is there anyway that you could make a program that would interface with a mySQL database with the visual c# 2005.net BETA? thanks ~metalhead
  9. A1METALHEAD

    a couple problems with the history object

    hello, i am working on a project that needs to display the last page viewed on the browser, and needs to have the capabliity to e-mail it along with other informaion. iv been looking over the internet for a wile, and finaly came here. i dont know how to get the last page viewd, and i do know how...
  10. A1METALHEAD

    an infinite array

    ok, here is my situation, i need a database that contains titles to books, and each book has one or more assignments. each assignment has a end date, start date, name, description. also, the books have an optional array of lessons, each with a tital and a description, number of pages. i have...
  11. A1METALHEAD

    haulting the program?

    is it possable to stop the program(like inside a infinite loop) for some time(like 5 seconds), but be able to acualy do things to the program(like click on buttons and stuff)? ty, METALHEAD
  12. A1METALHEAD

    using a class?

    well, i know c++, and i was wondering if it is possable to make a class obusly this: class aClass { public: aClass(int iniInt){ theInt=iniInt; } aClass(){ theInt=10; } int getInt(){ return theInt; } void changeInt(int newInt){ theInt=newInt; } private: int...
  13. A1METALHEAD

    um, a newb needs some help...

    i am creating my first app in c#. and i have a edit box. i want to assign it to a int, how can i make shure that it dosent try to convert it if the edit box has somthing other than numbers. i am a c++ programer, and i already tryed try { num =...
  14. A1METALHEAD

    wont create dialog

    hello, im new to vc++, and i am useing one of my brothers books( using visual c++ 6 ) and i am on the second chapter, it told me to make a SDI , then make a dailog resorce, and link it with a class with all the controls as member vars. well when ever i try to make it, it says 'CSdiDialog' ...
  15. A1METALHEAD

    commands

    is it possaable to use dos commands(including "cd"and exicuting seperate apps with command line prams) with c++?if so how? thanks ~metalhead
  16. A1METALHEAD

    want to start vc++

    i have just finished sams teach yoreself c++ in 21 days, and i wnted to start vc++, is there any (recent/updated)books that go into vc++ without focsing on c++ first? thankes, ~metalhead
  17. A1METALHEAD

    newib needs help...

    hello, i just started in java, and i installed J2EE 1.4 SDK and the free version of JCreator. and evry time i start my page, it comes up with java.lang.ClassNotFoundException , and then the class name. here is the sorce of the app: public class javaTest extends java.applet.Applet { public void...
  18. A1METALHEAD

    vc++6and vc++2005beta not finding heder files...

    hi, right now im having problems, i have tryed to compile opeGl files, +some othe progects that require windows.h. when ever i try to compile, it says that it cant find any of my openGl headerfiles, nor can it find windows.h. can you plese help? thanks, metalhead
  19. A1METALHEAD

    getting part of a string

    how do you get a part of a string? like if i wanted to get the first letter of "hello world"?
  20. A1METALHEAD

    newline?

    is there anyway to add a new line and a tab in a lable like in c++?(i have already tryed this) label1.text="1stLine \n 2ndLine \n \t 3rdLine

Part and Inventory Search

Back
Top