Search:

Type: Posts; User: diablo21

Page 1 of 13 1 2 3 4

Search: Search took 0.25 seconds.

  1. Replies
    3
    Views
    1,226

    Re: Read Symbols in File

    this is the main function of write log to file
    in my command where i use text ingame i call the function to record my message
    I use Multi Byte for project
  2. Replies
    3
    Views
    1,226

    Read Symbols in File

    I got a problem here,
    It doesnt write correct symbols in file , symbols like (% " ' _ # and others)
    in File Writes this : (null)s 0 -" , where i used %s %d '-
    How to fix it to recored correct...
  3. Replies
    2
    Views
    621

    VS 2013 RichTextBox Writing Line

    How to make my richtextbox when i write one full line , not to go on the new line when it goes to the end, it transfer the text on the next line down, i want to make it to continued writing on same...
  4. Replies
    3
    Views
    966

    VS 2013 Re: Undo & ReUndo ShortKeys

    thank you very much, but i got an one question in the richtextbox , when i use ctrl+shift+z it works fine, but my question here is when i use it the cursor for writing is going on first line first...
  5. Replies
    3
    Views
    966

    VS 2013 [RESOLVED] Undo & ReUndo ShortKeys

    How to make in application form when press Ctrl+Shift+Z to use:


    Private Sub UndoToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles UndoToolStripMenuItem.Click
    NoAdd =...
  6. Replies
    2
    Views
    578

    VS 2013 StartUp Program Run Applications

    Hello,
    Can someone has or can support me about this, i'm looking for some simple source or code for making application, where you can add , edit, remove, autostart applications to run, has option to...
  7. Replies
    0
    Views
    2,847

    Connection Return Fail

    How to make in this function
    if connection = false
    show message and close
    MessageBoxA(0, "Failed to connect to Database!", "Error", MB_OK);
    ::ExitProcess(0);



    BOOL SQLCONNECT::Connect()
    {
  8. Replies
    0
    Views
    2,325

    Block a specific Key

    Hi
    Can someone help me, how to block press T button in my client?
    i try
    LRESULT CALLBACK KeyboardProc(int nCode, WPARAM wParam, LPARAM lParam)

    if(wParam== 0x54)
    {
    //
    }
  9. Replies
    0
    Views
    714

    [RESOLVED] Repeat Button

    Hi, how to make this work like this:

    When i press 1 time button Home, Disable my Camera
    But how to make it if i pressed it again to Enable it, and if i press again Disable and the same way..loop...
  10. Thread: YouTube Video

    by diablo21
    Replies
    3
    Views
    6,399

    YouTube Video

    Hello i want to make this thing:

    <iframe width="93" height="86" src="https://www.youtube.com/embed/3V2b-pKfar0" frameborder="0" allowfullscreen></iframe>

    As you see it display the video in...
  11. Replies
    0
    Views
    477

    VS 2010 [RESOLVED] RichTextBox MultiLine

    Hello
    How to make it to save information in RichTextbox on each line
    Example

    When i press Button Login , it shows me "Enter username & password) , so this message is going into my Richtextbox...
  12. Thread: Debug Program

    by diablo21
    Replies
    0
    Views
    633

    Debug Program

    I have a problem
    My Program in C++ crash somewhere.
    How can i make debugg to see on what line of code it crash.

    I need to say that my project is an .dll file that is hooked in .exe file
  13. Replies
    1
    Views
    1,817

    Re: Read One ID only

    anything?
  14. Replies
    1
    Views
    1,817

    [RESOLVED] Read One ID only

    I want to make my code to read only MonsterID (specific monster ID, example MonsterID = 50, so if i kill this monster 50 will drop me the item, all other monsters if i kill not drop the same)

    With...
  15. Thread: Key Press

    by diablo21
    Replies
    8
    Views
    2,609

    Re: Key Press

    this is for key press to start but how to stop it?
  16. Thread: Key Press

    by diablo21
    Replies
    8
    Views
    2,609

    Re: Key Press

    any help how to make when press the key mouse to start clicking ?
    maybe someone can convert me this c# to c++



    using System;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;...
  17. Replies
    0
    Views
    710

    Refresh Information

    Hi, i got a question about here in the code.
    When i add stats on my character it refresh only Level and Expirience
    My stats Strenght,Agility,Vitality,Energy and LevelUpPoints are not refreshed, i...
  18. Thread: Key Press

    by diablo21
    Replies
    8
    Views
    2,609

    Re: Key Press

    i found on internet about -32767 that returns 0xFFFFFFFFFFFF8001 in hex in some forums i read it...
  19. Thread: Key Press

    by diablo21
    Replies
    8
    Views
    2,609

    Re: Key Press

    i dont understand what you trying to say, sorry for that
    but even if i use possitive number still when press the key mouse nothing doing
  20. Thread: Key Press

    by diablo21
    Replies
    8
    Views
    2,609

    Key Press

    Hi, i was trying to create an autoclick method for ingame
    When i Press F7 the mause to start clicking automatic Left Button , If Press Again F7 - Stop
    When i Press F8 the mouse to start clicking...
  21. Replies
    0
    Views
    823

    Problem with Code

    I got a problem with my code.
    When i put the item on my item i got message "This item has skill already !" , but when this message appears the item is deleted, if i switch ingame (relog) the item is...
  22. Replies
    0
    Views
    800

    Some Problems in Code

    Hello
    Got some problems in my code:
    1. Doesn't create file with Logs
    2. Doesnt insert information in database
    3. $credit=$credits["$payment_currency"]["$payment_amount"]; - i can't understand how...
  23. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    aa now i understand it how it should be thanks
  24. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    yes but i got underline about this
    aa maybe i forgot add : Dim duplicate As Boolean = True
    edit nope..not from this maybe its because i use button ?
  25. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    i got underline in DuplicateUser
  26. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    what it means: If Not DuplicateUser(nAccName) Then
    what i need to replace there i try with Textbox2.text(@nAccName) but its underlined
  27. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    please help
  28. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    any help please
  29. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    thats why i post here, for help omg..
    ok so maybe someone else would help me how to add it in my code..
  30. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    i try it with your example but i got a lot of errors cause not match
    i'm not sure how should it become if i add after Else check for empty fields
    can you add the missing part with red in my code so...
  31. Replies
    18
    Views
    1,883

    Re: Check Name does it exist first

    ah i can't manage it with your code maybe i make it wrong, can you tell me how should it become in my code:


    Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles...
  32. Replies
    18
    Views
    1,883

    [RESOLVED] Check Name does it exist first

    How to make this code
    If Name exist in database to display messagebox (Account name already exist try another)



    Private Sub Button2_Click(sender As System.Object, e As System.EventArgs)...
  33. Replies
    2
    Views
    761

    VS 2010 Re: [RESOLVED] Display info in ComboBox

    simply maded
    Textbox3.visible = false

    If textbox3.text = "0" Then
    Combobox.SelectedItem("Dark Wizzard")

    save:
    If combobox1.selecteditem("Dark Wizzard") Then
    mycommand... (@nClass, 0)
  34. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    i had got it correct how to do it.
    I had make new project from 0 now all is okey..thanks for the time and explanation man respect !
    im sorry that i cant give rate but you know it that i give you...
  35. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    i had copy only Timer_tick code
    i had created the class manual add>class>

    and this is the error i had uploaded my project
  36. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    here is my project , Form2 trying to make loading bar

    https://mega.co.nz/#!TZ8jTbzR!piRs-BFwK5Cw18dEcpW32j369dumFiEX-oJt9-aAQx4
  37. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    Build>Build Solution

    Error 1 Type 'ProgressBarText.CustomProgressBar' is not defined.


    Friend WithEvents CustomProgressBar1 As ProgressBarText.CustomProgressBar
    in red is underlined
  38. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    in my project
    what you mean to recompile (rebuild project i had tryed it still same error)
  39. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    I had added in Timer_tick
    but i got underline in CustomProgressBar1

    Error 1 'CustomProgressBar1' is not declared. It may be inaccessible due to its protection level.
  40. Replies
    16
    Views
    2,772

    VS 2010 Re: Progress Bar %

    okey i had added the stuff
    but i dont see any % in loading of bar

    Form1
    Timer1.Start()

    Timer:
    ProgressBar1.Increment(1)

    nothing else in Form1.vb
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width