Search:

Type: Posts; User: The Little Guy

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    759

    Re: Process Error

    Yes, It returns true.
  2. Replies
    4
    Views
    759

    Re: Process Error

    It is starting because it opens up a command prompt. When It starts properly the command prompt says open if it doesn't work the prompt instantly closes.
  3. Replies
    4
    Views
    759

    Process Error

    I am reading in errors from a process, but I am having issues.
    The following class is what I am using; it grabs info from a dialog box (with 4 textboxes), and passes them as parameters to the...
  4. Replies
    14
    Views
    1,262

    Re: Command Console

    Okay, thanks!

    What I guess I will do is just have a link that opens "mysql.exe" in it's own window
  5. Replies
    14
    Views
    1,262

    Re: Command Console

    1) set an input line. 1 line that asks for input from the keyboard from the rich textbox. When the person presses enter, send the query from that line to be processed.
    Example:


    mysql> select *...
  6. Replies
    14
    Views
    1,262

    Re: Command Console

    I don't see any help.

    The textbox is multilined, and contains pervious queries, so I can not just grab everything from the text box, because it will also contain results and queries from previous...
  7. Replies
    14
    Views
    1,262

    Re: Command Console

    I do, so can anyone tell me how to turn a textbox or richtextbox into a command console?
  8. Replies
    14
    Views
    1,262

    Re: Command Console

    Basically what I am trying to do is make a MySQL version of this:




    http://www.cs.bu.edu/courses/cs108/guides/idle1.jpg
  9. Replies
    14
    Views
    1,262

    Re: Command Console

    I have MySQL installed, and I would like to run MySQL queries from my application. I then want the result that MySQL returns displayed in my console.
    I want to use a textbox or something similar to...
  10. Replies
    14
    Views
    1,262

    Command Console

    How can a make a command console in my application? I would like users to be able to type in commands and have them executed. How can I do that?

    I was thinking I could do it with a textbox, so I...
  11. Replies
    3
    Views
    856

    VS 2010 Re: Create Service

    I am sorry, I should actually clarify. I didn't do a good job. Also, I am using Visual Basic 2010 Express

    I have "php-cgi.exe" I would like to run that as a service, which I can control through my...
  12. Replies
    3
    Views
    856

    VS 2010 Create Service

    How can I create a Windows Service using VB?
  13. Replies
    1
    Views
    1,820

    VS 2010 Textbox double click word selection

    I have a Multi-line text box, and All it is for is a basic editor to edit configuration files quickly.
    One thing though that really bugs, is when I double click on a word, it selects everything...
  14. Replies
    2
    Views
    833

    VS 2010 Re: Get full path from a directory

    Here is what I came up with, is there a better way?


    Dim newDir As String = Directory.GetParent(cDir & "\..\www\" & ServerName.Text).ToString & "\" & ServerName.Text
  15. Replies
    2
    Views
    833

    VS 2010 Get full path from a directory

    I am using this to get the current directory.

    Dim cDir As String = Directory.GetCurrentDirectory

    So with that cDir equals: C:\OWS\Manager
    I now need to go up one directory and then down two...
  16. Replies
    2
    Views
    574

    VS 2010 Re: Load Data Into Panel

    Ahh... I got it, make a "User Control" and add it like so...


    Public Class OWS
    Private Sub OWS_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ...
  17. Replies
    2
    Views
    574

    VS 2010 Load Data Into Panel

    I have a form that contains a split container docked in the form. On the left is a tree navigation panel, and when someone clicks on one of the items, I would like the relevant data to display on the...
  18. Replies
    3
    Views
    2,457

    VS 2010 Re: WebKit Error

    I was able to fix it by copying all the files into the Debug/bin folder, but now I get another error (can't remember off the top of my head)
  19. Replies
    3
    Views
    2,457

    VS 2010 WebKit Error

    I am trying to add webkit to my form, and when I run it I get this error:



    I got it from here:
    http://webkitdotnet.sourceforge.net

    I have no idea how to fix that error. Anyone know how?
  20. VS 2010 Script only works when I use MsgBox()

    Taking the following code:

    Dim ImageMagick As String = ""
    Dim convert As String = ""
    Dim mogrify As String = ""
    Dim filesfound As Boolean = False
    Private Sub...
  21. Replies
    4
    Views
    593

    VS 2010 Re: Program Settings

    Thanks!
  22. Replies
    4
    Views
    593

    VS 2010 Re: Program Settings

    Is it possible to update those settings?

    My application relies on another program, and I want to save the root location of that program to this setting. If the User moves the program to another...
  23. Replies
    4
    Views
    593

    VS 2010 [RESOLVED] Program Settings

    My program will need to store some settings for when the program gets closed then opened again. I would then like to reload the settings, and I was wondering what is the best way to do this with VB?...
  24. VS 2010 Re: Scan Directory and Sub Directory

    Thanks SirusDoma!

    Works like a charm!
  25. VS 2010 [RESOLVED] Scan Directory and Sub Directory

    I have a FolderBrowserDialog box, and when the user selects a folder, I would like to scan that folder and its sub folders for these file types:
    jpg, gif, png

    Here is what I have so far:
    Private...
  26. Replies
    3
    Views
    1,001

    Re: CPU Benchmark

    Gotcha! Thanks!

    On an off note, what type of calculations would something like that do?
  27. Replies
    3
    Views
    1,001

    CPU Benchmark

    If I were to write a program to do CPU Benchmarking, what all would be done to do something like that? What kind of tests would you do to test the CPU?
  28. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    anyone have any ideas?
  29. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    how do I do that? I cant find anything on google about this.
  30. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    I can not add rows to my datatable because it is "data-bound"



    so how can I fix that?
  31. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    Sorry to sound stupid, but how do I do that?
  32. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    I think you still misunderstand...

    Take a look at this image:
    http://www.askdavetaylor.com/0-blog-pics/itunes-pc-importing-song.png

    you see the last two rows... they have nothing in them, but...
  33. Replies
    13
    Views
    1,705

    Re: Fill Data Grid Completely

    That didn't do a single thing :(
  34. Replies
    13
    Views
    1,705

    Fill Data Grid Completely

    In my load form load, I have this:
    conn = New MySqlConnection()
    conn.ConnectionString = "server=mysql.phpsnips.com; user id=ryan; password=abc123; database=exchange"
    ...
  35. Replies
    7
    Views
    2,514

    VS 2010 Re: Disable Textbox Ding!

    A Google search didn't help with this one.
  36. Replies
    7
    Views
    2,514

    VS 2010 Re: Disable Textbox Ding!

    Got it.

    Private Sub txtSearch_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtSearch.KeyPress
    If e.KeyChar = ControlChars.Cr Then
    ...
  37. Replies
    7
    Views
    2,514

    VS 2010 Disable Textbox Ding!

    I have a text box set up so when someone presses enter it performs a function, how can I disable the "Ding" sound that the computer makes when someone presses enter?
  38. Replies
    3
    Views
    1,186

    VS 2010 Re: populate data grid

    Here is what I have:
    Private Sub search(ByVal str As String)
    Dim cmd As New MySqlCommand
    Dim adapter As New MySqlDataAdapter
    Dim myData As New DataTable
    str =...
  39. Replies
    3
    Views
    1,186

    VS 2010 populate data grid

    I have a data grid, and I am pulling data from a mysql table. How can I populate my grid with the data? I also want it so when someone double clicks the item it will perform an event. How can that be...
  40. Replies
    5
    Views
    891

    VS 2010 Re: .net framework

    Ahhh.... That is where it is!

    Thanks!
Results 1 to 40 of 288
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width