Search:

Type: Posts; User: dcrew

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Thread: c# he;lp

    by dcrew
    Replies
    6
    Views
    1,415

    Re: c# he;lp

    That was no help at all, this was done in my code...

    Edit 1: The best way to do this, is to remove the try method and see what is throwing the exception. Allow me to test this for myself - will...
  2. Thread: c# he;lp

    by dcrew
    Replies
    6
    Views
    1,415

    Re: c# he;lp

    You get that error because the installation file in the text document starts with a white-space, thus throwing an exception towards the fact that it tried to run that file and failed.

    Try this...
  3. Replies
    14
    Views
    1,199

    VS 2008 Re: [RESOLVED] XML Deleting Element

    I removed that was just a test. It all flows flawlessly anyways. Thanks!
  4. Replies
    14
    Views
    1,199

    VS 2008 Re: [RESOLVED] XML Deleting Element

    The forum names what are in the XML, At the start of the programme it loops through the elements in the XML and adds each Attribute "name" to the list.
  5. Replies
    14
    Views
    1,199

    VS 2008 Re: [RESOLVED] XML Deleting Element

    It's in a button click..


    XmlRemove(ComboBox1.Text)
  6. Replies
    14
    Views
    1,199

    VS 2008 Re: [RESOLVED] XML Deleting Element

    If forum.GetAttribute("name") = ForumName Then
  7. Replies
    14
    Views
    1,199

    VS 2008 Re: XML Deleting Element

    DONE IT!


    Public Sub XmlRemove(ByVal ForumName As String)
    Dim myDoc As New XmlDocument
    myDoc.Load(Application.StartupPath & "\Forums\forums.xml")
    Dim forums As...
  8. Replies
    14
    Views
    1,199

    VS 2008 Re: XML Deleting Element

    I tried..


    Public Sub XmlRemove(ByVal ForumName As String)
    Dim myDoc As New XmlDocument
    myDoc.Load(Application.StartupPath & "\Forums\forums.xml")
    Dim forums As...
  9. Replies
    14
    Views
    1,199

    VS 2008 Re: XML Deleting Element

    Can you give an example I don't quit understand how to do that.
  10. Replies
    14
    Views
    1,199

    VS 2008 [RESOLVED] XML Deleting Element

    Hello, Here is my current XML!


    <?xml version="1.0" encoding="utf-8"?>
    <forums>
    <forum name="TestForum1" url="http://www.testforum1.com/" />
    <forum name="TestForum2"...
  11. Replies
    3
    Views
    680

    VS 2008 Re: Mising Winsock Control

    Okay I have sorted it now, I have it it was a missing ocx file that I now have.
  12. Replies
    3
    Views
    680

    VS 2008 Re: Mising Winsock Control

    I need the Winsock 6.0 Contol for my program, I'm making a small LAN chatroom and there is alot of intension to help me :)
  13. Replies
    3
    Views
    680

    VS 2008 [RESOLVED] Mising Winsock Control

    Hello, I have been using vb alot and have hnot needed the winsock until today, And I tried Toolbox > Choose Items > COM Components and the other but its not there.

    I tried goolgling this and no...
  14. Replies
    7
    Views
    710

    VS 2008 Re: Checking HTTP Status.

    WebBrowser1.Navigate("Site Url")
    If WebBrowser1.DocumentTitle.ToString.EndsWith("cannot display the webpage") Then 'If IExplorer if different one get it from an offline page in the browser
    ...
  15. Replies
    2
    Views
    1,188

    VS 2008 Re: Listview Selected Item

    Thanks mate, Your newer than me and you knew it heheh!

    Thanks, I'm know you are making a great start!

    Thanks again mate.
  16. Replies
    2
    Views
    1,188

    VS 2008 [RESOLVED] Listview Selected Item

    Hello, I have this code

    Private Sub ListView2_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView2.SelectedIndexChanged
    If...
  17. Thread: Form Moving

    by dcrew
    Replies
    3
    Views
    610

    VS 2008 Re: Form Moving

    Thanks it works! Your a pure friend!

    Sorry for not saying thanks earlie not been on in a while
  18. Thread: Form Moving

    by dcrew
    Replies
    3
    Views
    610

    VS 2008 Form Moving

    Hello, I have this code

    Public Class Form1

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    If MouseButtons =...
  19. Replies
    6
    Views
    868

    VS 2008 Re: My Cursor Movement

    Thanks Toecutter, Mal1t1a

    I finnaly got it! For some reason i decided to try rewriting my class. And it works and now I dont get errors! :)

    Final Error:
    I have this
    Dim newCursor As Cursor =...
  20. Replies
    6
    Views
    868

    VS 2008 Re: My Cursor Movement

    Still get the same error on the line after the second movement.

    Thanks for trying, Maybe somebody can help :)
  21. Replies
    6
    Views
    868

    VS 2008 Re: My Cursor Movement

    *BUMP

    This happened in the last topic and everyone ignored! Stop skipping mey topic and help me!
  22. Replies
    6
    Views
    868

    VS 2008 My Cursor Movement

    Hello, I have this

    Public Class CustomCursor
    Private Declare Sub SetCursorPos Lib "User32" (ByVal X As Integer, ByVal Y As Integer)
    Private Const MOUSEEVENTF_LEFTDOWN = &H2
    Private...
  23. Thread: Custom Cursor

    by dcrew
    Replies
    4
    Views
    893

    VS 2008 Re: Custom Cursor

    Yet as I see noone has given answer.

    ... -.- ...

    I thought people were meant to help not just look and think "oh i cba today ill ignore this guy".
  24. Thread: Custom Cursor

    by dcrew
    Replies
    4
    Views
    893

    VS 2008 Re: Custom Cursor

    *BUMP

    Desperate for Answer
  25. Thread: 2 Forms

    by dcrew
    Replies
    9
    Views
    827

    VS 2008 Re: 2 Forms

    As i have completed it now and made a timer called BtF

    Input Code
    Me.BringToFront()

    Thanks, Cicatrix, HanneSThEGreaT
  26. Thread: 2 Forms

    by dcrew
    Replies
    9
    Views
    827

    VS 2008 Re: 2 Forms

    No, There is no existing reason why i should. I think my only question was specifically 'I have 2 Forms, I want Form2 to be always ontop of Form1 without having to TopMost everything else' It's such...
  27. Thread: 2 Forms

    by dcrew
    Replies
    9
    Views
    827

    VS 2008 Re: 2 Forms

    Don't work.. Still Form1 is above Form2

    Notes:
    Form1.Opacity = 50
  28. Thread: 2 Forms

    by dcrew
    Replies
    9
    Views
    827

    VS 2008 2 Forms

    Hello, I have 2 forms inwhich they are both in the same position and always will be! I will not explain why but please can I just have a helping answer :)

    I want my form2 to always stay on-top of...
  29. Thread: Text Boxes

    by dcrew
    Replies
    47
    Views
    3,010

    VS 2008 Re: Text Boxes

    Change the End 'TextFile1' to 'TextFile1.txt'
  30. Thread: Custom Cursor

    by dcrew
    Replies
    4
    Views
    893

    VS 2008 Re: Custom Cursor

    Yes no only i need my mouse mover to make it move correctly + smoothly to my desination with

    CustomCursor1.MoveCursor(20, 300)
  31. Thread: Custom Cursor

    by dcrew
    Replies
    4
    Views
    893

    VS 2008 Custom Cursor

    Hi, I have this as my Custom Cursor:

    Dim newCursor As Cursor = CreateCursor(Cursor1.PictureBox1.Image)
    Me.Cursor = newCursor

    And then it appears for about 1 second then...
  32. Replies
    3
    Views
    515

    VS 2008 Re: Item with an Icon

    As it actually worked and ~ I have indeed found out how to do this with a listview.

    I am sorry for this topic I shall input Resolved!
  33. Replies
    3
    Views
    515

    VS 2008 Re: Item with an Icon

    After the 8th Google page I found one that said i should use a listview that supports icon items!

    Im not sure and still looking for an answer.
  34. Replies
    3
    Views
    515

    VS 2008 Item with an Icon

    Hello, Today I wish for when I add my item to my listbox, Display my disired Icon from an ImageList!

    I have seen this in many applications and I dont think it will be hard.

    Thanks, Help really...
  35. Thread: Text Boxes

    by dcrew
    Replies
    47
    Views
    3,010

    VS 2008 Re: Text Boxes

    At the top of all your code you should see
    Public Class Form1

    Under that add
    Dim TxtFile1 As New TextFile1

    To append/add text
    TxtFile1.AppendText(Environment.NewLine & "text")

    To save file
  36. Replies
    6
    Views
    1,028

    VS 2008 Re: Process.start From A Listview click

    First when you ad a Process but adding the name to a list you need a branch that contains the location information and you need the name etc..

    First

    Public Class MyInfo
    Public String Name,...
  37. Replies
    0
    Views
    545

    VS 2008 Mdi Transparent Container

    Hi!

    Today I wish to do the following things!

    I have a Form which is an Mdi Container!
    I have another Form inwich the MdiParent is First Form1
    I have Form1 Transparent 50%
    I want it to 50%...
  38. Thread: Text Boxes

    by dcrew
    Replies
    47
    Views
    3,010

    VS 2008 Re: Text Boxes

    You could try..

    Google Search
    Youtube Videos

    or

    Search the Forums

    Hope you can get all you need! Anything you need to know on textboxes you can ask me! I know alot as I am a 3.5 Year VB...
  39. Thread: Text Boxes

    by dcrew
    Replies
    47
    Views
    3,010

    VS 2008 Re: Text Boxes

    Yes Thankyou for the Correction Keystone Paul

    Happy having fun with your Textbox! :)

    (I have corrected my code post (first post))
  40. Thread: Text Boxes

    by dcrew
    Replies
    47
    Views
    3,010

    VS 2008 Re: Text Boxes

    Well that ill be because if the TextBox doesn't have more than 6 characters it will not work as when I began to learn VB I asked for this and got this error was because of that!

    Try wrapping it in...
Results 1 to 40 of 146
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width