Search:

Type: Posts; User: Gamemaster1494

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    4,860

    Re: C#.NET .resx files

    BUMP since its not visible anymore

    Not sure if all the data in the .resx is the same as every other thing just to verify what version it is or not... Any help would be appreciated as this is the...
  2. Replies
    2
    Views
    1,728

    Re: Triangle in XNA

    So are you saying you want to have 2 triangles make a rectangle and take up the entire screen?
  3. Replies
    6
    Views
    4,860

    Re: C#.NET .resx files

    I found out the PublicKeyToken is a random key generated to link the sln's and all other resources together. I still need help with this.
  4. Re: Im New And Trying To Make A Program Were....

    Are you saying it moves the folder for a minecraft world and puts it in the saves file?

    Also, if you are new, you may want to start learning the coding language. If this is your first time at all,...
  5. Replies
    6
    Views
    4,860

    Re: C#.NET .resx files

    No you dont understand. My program actually creates the files. Like it sits there and does File.Create("FileName.cs") etc, and actually codes a totally new setup and project with that
    projects own...
  6. Replies
    6
    Views
    4,860

    Re: C#.NET .resx files

    My question is, how would I generate one of these with code? I need to generate these to get the forms that i generate to show the buttons and such.
  7. Replies
    6
    Views
    4,860

    C#.NET .resx files

    I have created a program that generates forums and creates buttons on those forums in code, and saves the files. However, it seems that i need to also create .rsx files to tell Visual Studios where...
  8. Replies
    10
    Views
    2,841

    Re: VB.NET Programmer Needed

    I'm a vb.net programmer, but I would like to know what type of programming is involved, and more information to see if i would be qualified to do the job.
  9. Replies
    1
    Views
    606

    Question about microphones...

    So I am planning on doing this huge project, which i want a secret right now. I was wondering if it was possible to detect words said into a microphone? If so, how?
  10. Replies
    7
    Views
    1,116

    Re: What am I doing wrong here?

    Arrays start at 0. Providing the url you gave us, there is only 3 elements (Array number 0, 1 and 2) So it is crashing when trying to get history[3] because it doesn't exist.

    So change:

    ...
  11. Mono for Android C# QR Scanner (with camera) NEEDED!

    Hi. I need some kind of tutorial to use the camera on an android phone to pick up a QR code.... I can't find anything anywhere. Tried youtube, google, nothing... Any help would be GREATLY...
  12. [C#] Re: [XNA 4] Pixel Collision problems with animation

    It highlights


    enemyTextureData = new Color[((int)(lEnemy[x].iTile - 1) * (int)lEnemy[x].vTileSize.X) * (int)lEnemy[x].vTileSize.Y];

    And gives an out of bounds exception... I may also do it...
  13. [C#] [XNA 4] Pixel Collision problems with animation

    Hello. I am using this sample of code from http://create.msdn.com/en-US/education/catalog/tutorial/collision_2d_perpixel . In it it shows how to detect using pixel collision. However, I am having a...
  14. Replies
    7
    Views
    946

    Re: a little help please

    string sInput = Console.ReadLine();
    if (sInput.ToLower() == "steelaxe")
    {
    //set whatever you want to class1.steelaxe
    }

    not 100% sure on how you are wanting to do this but this at leasts gets...
  15. Replies
    7
    Views
    946

    Re: a little help please

    Are you asking how to get input from the user?
  16. Replies
    12
    Views
    1,216

    Re: [windows xp] - about problems

    So are you saying the System Install media is a Floppy Disc?

    If so, most computers when booting up shows it booting up the BIOS. Usually then you press a certain F key to change what it boots up...
  17. Re: C#.NET detect if user is on the desktop?

    Alright. I will tomarrow afternoon, since the code is at school atm.

    OFF TOPIC: question, am I allowed to have 2 threads up at once?
  18. Re: C#.NET detect if user is on the desktop?

    Yes i did. oh wait.. i may not of done IntPtr before GetForegroundWindow();... I'll have to check it tomarrow =D. Hopefully it works!!!!
  19. Re: C#.NET detect if user is on the desktop?

    It hightlights : IntPtr cWin = GetForegroundWindow(); and says some error about converting from IntPtr to int.
  20. Re: C#.NET detect if user is on the desktop?

    It does not work. I tried it and 0 did not work... It turns out the desktop was 131232 or something, and when i was just viewing the desktop it wouldn't trigger... Anyone else? please help... I need...
  21. Re: C#.NET detect if user is on the desktop?

    I'm making a hot key program. I want it to trigger tho only when the user is on the main desktop. Like no other windows in focus, just looking at the desktop and the icon(s) they have. (i was also...
  22. C#.NET detect if user is on the desktop?

    Hello. I was wondering if it was possible to see if the user was viewing the desktop(not on any other screen). If so, how? Thank you!
  23. Re: (C#.NET)It won't let me use globals, or it will but it doesn't do what it should!

    OOOOOOOHHHH so thats what static does!!!! Legit! Thanks Evil =D
  24. Re: (C#.NET)It won't let me use globals, or it will but it doesn't do what it should!

    So will making it static allow me to access it from different forms?
  25. [RESOLVED] (C#.NET)It won't let me use globals, or it will but it doesn't do what it should!

    I am using the following code inside a class:

    global int iTest = 0;

    When I go into a form and try to access it it wont work. Any ideas? (btw when i do global class it gives error....)
  26. Re: [RESOLVED] Quick help with detecting words.

    SO LCase$ makes everything lowercase? So if i displayed the text somewhere, if some of it was upper case, it would be lower case instead?
  27. Re: Quick help with detecting words.

    xD Seriously? Wow man. Thanks so much! XD That was easy. =D
  28. [RESOLVED] Quick help with detecting words.

    Okay. Using the Split() function, i got the words just fine. But instead of having to do a bunch of or statements, is there a way to ignore the capitilization? Like it would return true if Hello was...
  29. Re: Compile Error: Constant expression required? Help!

    Okay. Worked! Thanks!
  30. [RESOLVED] Compile Error: Constant expression required? Help!

    It highlights this sub:

    Public Sub CalculateBD(txtInput As TextBox, lblOutput As Label, lengthfornumber As Long)
    Dim i
    Dim character(Len(txtInput.Text))
    For i = 1 To...
  31. Replies
    10
    Views
    1,305

    Re: [RESOLVED] How to seperate a string?

    Hehe. Thanks also CDRIVE. =)
  32. Replies
    10
    Views
    1,305

    Re: How to seperate a string?

    Sweet! That worked baja_yu. Thanks so much!
  33. Replies
    10
    Views
    1,305

    Re: How to seperate a string?

    how can i get it to split each character though? like if the word was "Hello" it would do H e l l and o.
  34. Replies
    10
    Views
    1,305

    Re: How to seperate a string?

    Oh. Ok. So like
    arrExample() = Split(txtExample.text)
    ?
  35. Replies
    10
    Views
    1,305

    Re: How to seperate a string?

    Okay. After the split function, how would i assign the character to a variable?
  36. Replies
    10
    Views
    1,305

    [RESOLVED] How to seperate a string?

    I need to know how to separate a line that the user types into a text box, and separate them by each character, and do something with that character. How would i do this? I also need to be able to...
  37. Re: Why does it give me an error when i use Hour?

    Oh. That makes sense. Thanks guys!
  38. [RESOLVED] Why does it give me an error when i use Hour?

    I know that Hour is a vb defined code, but it gives me an error when i set a variable = hour. why?


    Dim i
    i = Hour
  39. Re: Need help with several things about text files

    um... okay.... Hmmm.... So... How would i get it to where like the txt file says:
    10/10/10, 21/10/10, 21/11/10
    for example. and i want
    variable(1) = 10/10/10, variable(2) = 21/10/10, variable(3)...
  40. Re: Need help with several things about text files

    Okay. So what code is it that separates it?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width