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

  1. Krusho

    Problems with project

    I know C but I'm still newbish in VB. Only reason I'm using VB is the code to patch into the network with the chat was written in vb.
  2. Krusho

    Problems with project

    says method or data member not found. you'll need to view the project as a whole.
  3. Krusho

    Best Language to Write Video games in?

    C/C++ My school is teaching us to write them. And I can't see any other way you would want to.
  4. Krusho

    Problems with project

    lvChannel.View = lvwSmallIcon
  5. Krusho

    Problems with project

    It's a chat program. Would you like me to send you the entire project? AutoClear is the thing that clears the chat window.
  6. Krusho

    Problems with project

    'Form Code Private Sub form_load() Dim s As String Close #1 rtbChat.BackColor = vbBlack rtbChat.Font.Size = 8 lvChannel.View = lvwSmallIcon AddChat &H99CC00, "Welcome to Lost.Bot v1.0 Test Edition by Krush[LM]" frmChat.KeyPreview = True frmChat.Caption =...
  7. Krusho

    Problems with project

    Could someone look at my project and help me fix the code so that it runs again? I don't know what I changed. Reply so I could send it to you. It can't get past the first part when it runs. You'll see what I mean.
  8. Krusho

    Functions with strings

    I'm still really new and our teacher is teaching based on the assumption everyone has had previous experience. Could you guys walk me through this?
  9. Krusho

    Functions with strings

    This is what i have so far for the StringToLong() int StringLen( char src[] ) { int len = 0; while( src[len] ) len++; return len; } int StringSpn( char str[], char set[] ) { int i = 0; int j = 0; int found = 0; while( str[i] ) { while( (set[j] != '\0') && (str[i] != set[j]) ) {...
  10. Krusho

    Functions with strings

    Yes, but I am required to write them myself and I can't see the actual code for those other ones.
  11. Krusho

    New to Flash

    What about software?
  12. Krusho

    New to Flash

    I was wanting to make a Flash for my website and I wanted to know where would be a good free place to get started on this? And after I get the software I'm mostly likely going to need some help in using it. :-D
  13. Krusho

    Functions with strings

    Could someone show me the correct way to implement the following functions in C? double StringToDouble(char src[]); // StringToDouble converts a number stored in the string src to its floating-point representation, if possible long StringToLong (char src[]); // StringToLong works like...

Part and Inventory Search

Back
Top