Results 1 to 40 of 40

Thread: Coding Fix

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Coding Fix

    Hey i am at college doing an assignment, i just need a little bit of help can some one help me put in a delete button in to my code some how or some how help me to be able to delete a record from interface.

    Here is the form working


    and here is the code
    Code:
    Private somedata As String
    
    
    Private Sub Command3_Click()
    Open "E:\Movies.txt" For Append As #1
    Print #1, Text1.Text
    
    Print #1, Text2.Text
    
    Print #1, Text3.Text
    
    Print #1, Text4.Text
    
    Print #1, Text5.Text
    
    Close #1
    List1.Clear
    List2.Clear
    List3.Clear
    List4.Clear
    List5.Clear
    
    Call Form_Load
    End Sub
    
    
    
    
    Private Sub Form_Load()
    Open "E:\Movies.txt" For Input As #1
    Do While Not EOF(1)
    Input #1, somedata
    List1.AddItem somedata
    Input #1, somedata
    List2.AddItem somedata
    Input #1, somedata
    List3.AddItem somedata
    Input #1, somedata
    List4.AddItem somedata
    Input #1, somedata
    List5.AddItem somedata
    Loop
    Close #1
    End Sub
    Last edited by S_A_M.1990; Dec 3rd, 2009 at 11:40 AM.

  2. #2
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Coding Fix

    Here's some suggestions.
    1. Add a button to delete records
    2. When button is clicked
    -- ensure List1 has an item selected (List1 is the movie names, correct?)
    -- remove the same item index from all listboxes.
    -- The selected item index in any listbox is .ListIndex
    3. After deleting from the listboxes, re-write your Movies.Txt file (i.e., Open for Output not Append) from the remaining entries in your listboxes
    -- alternatively, you can set a flag indicating the "database" has changed and requires re-writing when the app is closing.
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  3. #3

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    1. Add a button to delete records
    2. When button is clicked
    -- ensure List1 has an item selected (List1 is the movie names, correct?)

    Will this only delete whats in list 1 ? if so is there any way to be able to select something from each list and delete them all ?
    Also could you show me the code that i need for it to delete something from the list after the button is clicked

  4. #4
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Coding Fix

    Quote Originally Posted by S_A_M.1990 View Post
    1. Add a button to delete records
    2. When button is clicked
    -- ensure List1 has an item selected (List1 is the movie names, correct?)

    Will this only delete whats in list 1 ? if so is there any way to be able to select something from each list and delete them all ?
    Also could you show me the code that i need for it to delete something from the list after the button is clicked
    To remove the selected item:
    Code:
    List1.RemoveItem List1.ListIndex
    You will have to remove the list item from each listbox individually. Recommend removing from the others and do List1 last.

    You can kind of synchronize your listboxes a bit. Each time a list item is selected the Click event of the listbox fires. You can ensure each listbox has the same list item selected any time any of the listboxes change. To select a listitem via code:
    Code:
    List3.ListIndex = x 
    ' you supply X which is an valid value between 0 and the number of items
    ' in the listbox less one.  In otherwords: .ListCount - 1
    Edited: Probably not addressed yet in your class. But using a array of listboxes would reduce amount of code needed each time you had to do something to all listboxes and make your job easier too.
    Last edited by LaVolpe; Dec 2nd, 2009 at 01:05 PM.
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  5. #5

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Thank you so much for your help.
    I have got it working, it deletes from the list but i can't get it to delete the data from the file it is reading it out of.
    Is it possible to get it to delete the data from the file aswel?

  6. #6
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Coding Fix

    Quote Originally Posted by S_A_M.1990 View Post
    Thank you so much for your help.
    I have got it working, it deletes from the list but i can't get it to delete the data from the file it is reading it out of.
    Is it possible to get it to delete the data from the file aswel?
    You are welcome.

    You cannot just remove a line from a file (99.99% of the time). Updating a file almost always requires rewriting the file. Therefore, you would rewrite it as I suggested in post #2 above.
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  7. #7

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    3. After deleting from the listboxes, re-write your Movies.Txt file (i.e., Open for Output not Append) from the remaining entries in your listboxes

    So if i add a new button in and call it update after i use the delete button then click update would it be possible to do it that way?

    If so could you tell me the code i need to get that to work.

  8. #8

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Bump

  9. #9
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    So if i add a new button in and call it update after i use the delete button then click update would it be possible to do it that way?
    Or you can write the code for saving the data to the file, inside the delete button, ie. after the code for deleting..

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  10. #10
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    If so could you tell me the code i need to get that to work
    File input/output tutorial is available in our Classic VB6 FAQ section...

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  11. #11
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Coding Fix

    surely you have code to write the file already? How was it created?
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  12. #12

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Quote Originally Posted by akhileshbc View Post
    File input/output tutorial is available in our Classic VB6 FAQ section...

    Thanks i'll go have a look now thanks

    surely you have code to write the file already? How was it created?
    What how was the code put together that i have?
    I put it together from old codes that i made at college

  13. #13

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    I Cant seem to find the code i am looking for i have found a code like it but i just want to delete the records i have sleceted

  14. #14
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    Upload your current project...

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  15. #15

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Code:
    Private somedata As String
    
    
    
    Private Sub Command1_Click()
    List1.RemoveItem List1.ListIndex
    List2.RemoveItem List2.ListIndex
    List3.RemoveItem List3.ListIndex
    List4.RemoveItem List4.ListIndex
    List5.RemoveItem List5.ListIndex
    End Sub
    
    Private Sub Command3_Click()
    Open "X:\Movies.txt" For Append As #1
    Print #1, Text1.Text
    
    Print #1, Text2.Text
    
    Print #1, Text3.Text
    
    Print #1, Text4.Text
    
    Print #1, Text5.Text
    
    Close #1
    List1.Clear
    List2.Clear
    List3.Clear
    List4.Clear
    List5.Clear
    
    Call Form_Load
    End Sub
    
    
    Private Sub Form_Load()
    Open "X:\Movies.txt" For Input As #1
    Do While Not EOF(1)
    Input #1, somedata
    List1.AddItem somedata
    Input #1, somedata
    List2.AddItem somedata
    Input #1, somedata
    List3.AddItem somedata
    Input #1, somedata
    List4.AddItem somedata
    Input #1, somedata
    List5.AddItem somedata
    Loop
    Close #1
    End Sub
    There is the code as you can see i have added in the delete button and it works but doesnt delete from the file

  16. #16
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Coding Fix

    you need to change your code. You are opening the file in append mode. if you opened then saved your file would suddenly be twice as big. Open it in output mode to write it. Whenever you delete a listing from the listbox, simply call the write routine again. This way it will always be up to date.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  17. #17

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Quote Originally Posted by Lord Orwell View Post
    you need to change your code. You are opening the file in append mode. if you opened then saved your file would suddenly be twice as big. Open it in output mode to write it. Whenever you delete a listing from the listbox, simply call the write routine again. This way it will always be up to date.

    Open "X:\Movies.txt" For Output As #1



    What is the code to call write routine again? sorry about this

  18. #18
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    What is the code to call write routine again? sorry about this
    What routine ?

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  19. #19

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Code:
    Private Sub Command3_Click()
    Open "X:\Movies.txt" For Input As #1
    Print #1, Text1.Text  <<<
    
    Print #1, Text2.Text
    
    Print #1, Text3.Text
    
    Print #1, Text4.Text
    
    Print #1, Text5.Text
    
    Close #1
    List1.Clear
    List2.Clear
    List3.Clear
    List4.Clear
    List5.Clear
    
    Call Form_Load
    End Sub
    Can someone tell me whats wrong with this part of the code as its not working now at alll?

  20. #20
    Hyperactive Member
    Join Date
    Sep 2009
    Location
    Lost in thought
    Posts
    349

    Re: Coding Fix

    Quote Originally Posted by S_A_M.1990 View Post
    What how was the code put together that i have?
    I put it together from old codes that i made at college
    So Your not at college now?

  21. #21

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Dont worry got it working

  22. #22

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Quote Originally Posted by 5ms? View Post
    So Your not at college now?
    I am at college?
    I mean some old codes that i made at college

  23. #23

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    I still cant get it to delete something from the file it deletes on the form but then when you restart the program its still there any one know the code i need to remove it from the file ??

  24. #24
    Hyperactive Member
    Join Date
    Sep 2009
    Location
    Lost in thought
    Posts
    349

    Re: Coding Fix

    Quote Originally Posted by S_A_M.1990 View Post
    I still cant get it to delete something from the file it deletes on the form but then when you restart the program its still there any one know the code i need to remove it from the file ??
    Just delete from the form and re-save.

  25. #25

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Code?

  26. #26
    Hyperactive Member
    Join Date
    Sep 2009
    Location
    Lost in thought
    Posts
    349

    VB6 - Files & listboxes

    Add an Array of Text-boxes info in to an Array of list-boxes.
    And Save an Array of list-boxes.
    And Load a file to an Array of list-boxes.
    Attached Files Attached Files

  27. #27
    Hyperactive Member
    Join Date
    Sep 2009
    Location
    Lost in thought
    Posts
    349

    Re: Coding Fix

    Ok.......?
    Please go to the Thread Tools menu and click Mark Thread Resolved when you have your answer.
    Last edited by 5ms?; Dec 3rd, 2009 at 10:37 AM.
    .

    The answer to your question is Here
    And here
    C:\Program Files\Microsoft Visual Studio\MSDN98\98VSa\1033\SAMPLES\VB98

    Please go to the "Thread Tools" menu at the top of this Thread, and click "Mark Thread Resolved" when you have your answer.
    So I can fine the answer when I need it.

    how to stop the playsound when it is in loop..Play more than 1 sound at a time..
    ini file Check if IP changed Strings 'Split', 'Left' and 'Right'
    Save And Load an Array of list-boxes, to and from a file......list-box and CommonDialog
    Quote Originally Posted by RobDog888

    So please install VB6 service pack 6 as its the latest and last supported service pack MS will ever make.
    http://support.microsoft.com/kb/q198880/ I'm sure this will fix your issue
    The only reason some people get lost in thought is because it’s unfamiliar territory. —Paul Fix

  28. #28

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Link doesnt work?

  29. #29
    Hyperactive Member
    Join Date
    Sep 2009
    Location
    Lost in thought
    Posts
    349

    Re: Coding Fix

    It was moved, to here, look up, It's now post #26 in this Thread.

  30. #30
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    Code:
    Private Sub Command3_Click()
    Open "X:\Movies.txt" For Append As #1
    Write #1, Text1.Text,Text2.Text,Text3.Text,Text4.Text,Text5.Text
    Close #1
    List1.Clear
    List2.Clear
    List3.Clear
    List4.Clear
    List5.Clear
    
    Call Form_Load
    End Sub
    
    
    Private Sub Form_Load()
    dim a as string,b as string,c as string,d as string,e as string
    Open "X:\Movies.txt" For Input As #1
    Do While Not EOF(1)
    Input #1, a,b,c,d,e
    List1.AddItem a
    List2.AddItem b
    List3.AddItem c
    List4.AddItem d
    List5.AddItem e
    Loop
    Close #1
    End Sub
    I made small corrections to your code...

    And inside the delete button, you can write this code for saving the data after deleting:
    Code:
    dim i as integer
    Open "X:\Movies.txt" For output As #1
    for i=0 to list1.listcount-1
    Write #1, list1.(i),list2.(i),list3.list(i),list4.list(i),list5.list(i)
    next i
    close #1
    I haven't tested them...

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  31. #31

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Write #1, list1.(i),list2.(i),list3.list(i),list4.list(i),list5.list(i)

    This line comes up red ?
    and says syntax error

  32. #32
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    sorry...
    list1.list(i) and list2.list(i)

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  33. #33

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    No something is still wrong with it still comes up as yellow

    Write #1, List1.List(i) And List2.List(i) And List3.List(i) And List4.List(i) And List5.List(i)

  34. #34
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    list1.list(i) and list2.list(i)
    I mean change those bolded text.. Not to replace the comma with AND...

    Code:
    Write #1, List1.List(i) ,List2.List(i), List3.List(i) , List4.List(i) , List5.List(i)

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  35. #35

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Thats working PERFECTLY thank you so much

  36. #36
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    Problem solved...????

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  37. #37

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Yes but could you help me with one more little problem
    i'm trying to get a search button to work i have the code

    Code:
    For i = 0 To List1.ListCount - 1
    search = txt_search.Text
    If List1.List(i) = search Then
    MsgBox List1.List(i) & " " & List2.List(i)
    Else
    End If
    Next i
    but there is somthing wrong with this line
    search = txt_search.Text
    comes up as yellow

  38. #38
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    Code:
    dim strSearch as string
    strsearch = txtsearch.Text
    For i = 0 To List1.ListCount - 1
    If List1.List(i) = strsearch Then
    MsgBox List1.List(i) & " " & List2.List(i)
    exit for  '~~~~> escape from the loop
    End If
    Next i

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  39. #39

    Thread Starter
    Member
    Join Date
    Nov 2009
    Location
    England
    Posts
    51

    Re: Coding Fix

    Yea thats working great thank you so much for helping me

  40. #40
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: Coding Fix

    If your problem is solved, please Mark the Thread as RESOLVED

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width