Search:

Type: Posts; User: iProRyan

Search: Search took 0.27 seconds.

  1. VS 2015 Populate Tree View w/ Progress Bar (Background Worker? Multithreading?)

    Hi guys,

    I've tried all sorts of tutorials, research etc to get this working but have completely run out of ideas now so really need your help.

    I have a TreeView which I populate with a list of...
  2. VS 2010 Re: [RESOLVED] When I debug... one form becomes completely disabled!

    Thank you for your reply, it's very much appreciated. But I've been such an idiot! I must of have accidentally set the Form Enabled property to False because that was the issue. *facepalm*
  3. VS 2010 [RESOLVED] When I debug... one form becomes completely disabled!

    Hello

    Title says it all really.

    When I click the button to open one form from another, all the controls on the new form become disapled, and I have no idea what I have done to cause this, or...
  4. VS 2012 Re: [RESOLVED] Formatting strings - DateTime - Show AM/PM - Easy Question!

    Thank you both very much, works perfectly! That page could be very useful in the future!
  5. VS 2012 [RESOLVED] Formatting strings - DateTime - Show AM/PM - Easy Question!

    Hi Guys,

    Having an issue, basically I am using the code below on a Timer to display a live clock



    Dim time As DateTime = DateTime.Now
    Dim format As String = "dddd d MMMM yyyy hh:mm:ss"...
  6. Replies
    8
    Views
    1,463

    Re: [RESOLVED] MySQL DELETE Old Than Today

    I see what you're saying ans understand why, is it possible to have a calendar data picker on an inputbox or would I need to use a seperate form?
  7. Replies
    8
    Views
    1,463

    Re: MySQL DELETE Old Than Today

    Hello. I played around with STR_TO_DATE and had some success, but I've got it all working fine now.

    What I did was change the MySQL Data Type back to date and then when retrieving data I used the...
  8. Replies
    8
    Views
    1,463

    Re: MySQL DELETE Old Than Today

    Is it possible to store date values in the format DD/MM/YYYY in MySQL? Or how difficult would it be for me to change alll my existing VB code to hand the differences in date format?
  9. Replies
    8
    Views
    1,463

    [RESOLVED] MySQL DELETE Old Than Today

    Hi Guys,

    I have probably posted this in the wrong section, but hoping one of you may be able to help!
    Having a bit of a problem with an SQL query I want to delete all the records where...
  10. Replies
    8
    Views
    2,227

    VS 2012 Re: [RESOLVED] MySQLBackup HELP

    I am also using Windows 8.1. No issues to do with user accounts for me, I am the only and administrative user though. I'm using Uniserver as my MySQL localhost server, if you are using the normal...
  11. Replies
    8
    Views
    2,227

    VS 2012 Re: MySQLBackup HELP

    Hi

    Just to let you know I've got it to work now using the following code.


    Imports System.IO

    ...
  12. Replies
    8
    Views
    2,227

    VS 2012 Re: MySQLBackup HELP

    Tried using it in the original directory still the same thing. Would be muchly appreciated if you could find your code so I could have a look!
  13. Replies
    8
    Views
    2,227

    VS 2012 Re: MySQLBackup HELP

    Using your method: I've created a folder in my C drive called PROMSDatabaseBackup and put the mysqldump.exe in there and tried the following code:

    Dim args As String = "–e –u root -p root -h...
  14. Replies
    8
    Views
    2,227

    VS 2012 [RESOLVED] MySQLBackup HELP

    Hi Guys

    Trying to create a button that will backup one of my MySQL Databases. I've downloaded and added references to the MySql.Data.dll and the MySqlBackup.dll and now I don't really have a clue...
  15. Replies
    4
    Views
    1,820

    VS 2012 Label Text. Add .00 If Whole Number

    Hi Guys,

    Wondering if anyone can help, I have a bit of code that says "lblNewValue.Text = "£" & NewValue" New Value is a simple subtraction calculation set to a data type of Double. However I...
  16. Replies
    6
    Views
    1,019

    VS 2012 Re: listViewPrinter Error

    Sorry where's this link? Hahah
    Can't find it in your signature!
  17. Replies
    6
    Views
    1,019

    VS 2012 Re: listViewPrinter Error

    Hi Paul. I love it, it's fantastic! I will do! One quick question how easy would it be to have check boxes for vertical and horizontal gridlines, not both?
  18. Replies
    6
    Views
    1,019

    VS 2012 Re: listViewPrinter Error

    Hi Guys,

    Don't worry found the solution! It didn't like it because I was using an IF statement to say if the return from the database for one of the subitems was "NONE" was to not inserted and it...
  19. Replies
    6
    Views
    1,019

    VS 2012 [RESOLVED] listViewPrinter Error

    Hi Guys,

    Got a problem and have absolutely no clue why or how to fix it. First I have set up and slightly modified the colours of the listViewPrinter that is available on MSDN here. This works...
  20. VS 2012 Re: ListView SelectedIndexChanged HELP!

    Hi Ian,

    Works perfectly, thanks for your solution and explanation! It is greatly appreciated!

    Thanks,
    Ryan
  21. VS 2012 [RESOLVED] ListView SelectedIndexChanged HELP!

    Hi Guys

    Wondering if anyone could help with a little, well big, problem that I have come across with my project. My form is for ordering an item, and you have to choose something from a listview....
  22. Replies
    1
    Views
    930

    VS 2012 Printing data from a listview.

    Hi Guys.

    I have been searching for ages and just can't find a solution or even a starting point for my problem, all are for old versions are just not what I'm looking for. Basically I have a form...
  23. VS 2012 Need some advice for printing round sheets.

    Hi Guys,

    You may remember my previous post about making a Paper Route and Order Management system for my A2 Computing Project, but I could really do with some advice. In my database I have the...
  24. VS 2012 Re: listview value from specific column.

    Oh right, I see how it works! That doesn't effect my scenario because multi select is set to False in the properties otherwise it wouldn't make sense haha!

    Thank you though! :)
  25. VS 2012 Re: listview value from specific column.

    Worked like a charm Paul thanks! Except I had to change the sub item to 0, because that's what it was in the columns settings.


    listviewCustomers.SelectedItems(0).SubItems(0).Text

    Any chance...
  26. VS 2012 [SOLVED]listview value from specific column.

    Hi Guys

    Come across a problem in my A2 Computing project that I can't seem to overcome and wondering if you could help, and before you ask we are allowed help for this project!

    I'm building a...
  27. Replies
    6
    Views
    899

    Re: Connecting to a MySQL Server Database

    Hi Guys, thanks for your help it was just the cmd.connection that was broken! Yes sorry the title is wrong got some project going involving MySQL and SQL, sorry!
  28. Replies
    6
    Views
    899

    Re: Connecting to a MySQL Server Database

    Hello, where exactly would I put this? and how is it used? and yes let's call the variable 'conn' and 'com' for now! Is it literally saying the connection for the command to be carried out on is the...
  29. Replies
    6
    Views
    899

    Connecting to a MySQL Server Database

    Hi Guys,

    I am having a major problem connecting a carrying out commands on my SQL Server. I can connect and do commands fine using Microsoft SQL Server Management Studio (I login using Windows...
  30. Replies
    4
    Views
    1,386

    VS 2010 Re: Importing a text file to a List Box

    Works perfect thanks!

    Anyway I can get it to work with an Open File Dialog to browse for the file? I've adapted it to just enter the location of the file and it's work great, but that's a bit...
  31. Replies
    4
    Views
    1,386

    VS 2010 Importing a text file to a List Box

    Hi Guys,

    I am working on a project, and would like to be able to import text files into a listbox. So that one line in the text files makes one item in the list box, I have successfully been able...
  32. Replies
    1
    Views
    423

    VS 2010 Database Combo Box Help!

    Hello,

    I could really do with some help. In my Visual Basic application I have added a Access 2003 Database to the Data Sources. When I drag and drop the table I want onto the form in Details...
  33. Replies
    3
    Views
    1,690

    VS 2008 Re: Tic Tac Toe AI Help!

    Thanks Satal Keto.
  34. Thread: calculator

    by iProRyan
    Replies
    9
    Views
    12,299

    Re: calculator

    Does the download contain the source code? My calculator can only work with two textboxes, but I want one.
  35. Replies
    3
    Views
    1,690

    VS 2008 Tic Tac Toe AI Help!

    Hello

    I am writing a Tic Tac Toe game. I have one form which is for the 2player game, which works perfectly. I am trying to write an 2nd form the Human vs Computer game, but cannot write an AI. I...
Results 1 to 35 of 35



Click Here to Expand Forum to Full Width