Search:

Type: Posts; User: VBLegend

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Re: Saving to text to file from TextBox help??

    Since you use JM code you better use the:



    TextBox1.Text = IO.File.WriteAllText("File Path Here", "Content Here")
  2. Re: Displaying contents of .txt in TextBox help?

    You can use this also.



    Dim browse As New OpenFileDialog
    Dim result As New DialogResult
    Dim readText As IO.StreamReader
    Dim strContent As String

    ...
  3. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    Re: .Net.Sockets

    @Atheist = i read the TCP/IP in your signature, for some instance i understand a little of the code now, but how to test the DOListen if theres a client who want to connect. I try this thing but its...
  4. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    Re: .Net.Sockets

    Actually that code was really in Console type of application i just re-edited it but i think i made some big mistake. I just want to know some simple Server Standby waiting for connections and client...
  5. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    Re: .Net.Sockets

    I change the variables but still its not working form1 and form2 were not showing. I just want to test how to standby the server and wait for connections of client and then get the message if ever...
  6. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    Re: .Net.Sockets

    Yes i've placed the server code in the form1_load event, and to be able the server detects a client i include the form2.show in the form1 load event
  7. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    Re: .Net.Sockets

    Well the server code is place in the form load when i run the application it doesn't throw an exception, the form is not loading. Thats it in short nothing is happen don't know what is the problem.
  8. Thread: .Net.Sockets

    by VBLegend
    Replies
    14
    Views
    1,333

    .Net.Sockets

    I'm stuck with this, i have this server and client code but for one instance only not a multithreading ports only one client can connect but this is just for practicing myself in sockets, but...
  9. Replies
    3
    Views
    609

    Re: Disable Buttons

    That is a nice class but hard to understand :) although it is working, is there any other way to disable those buttons ? I can use that but i just want to find another alternatives.
  10. Replies
    3
    Views
    609

    Disable Buttons

    Hey guys how to disable this following buttons when form loads ?

    * Alt
    * Windows
    * Escape
    * Ctrl

    When i totally disable all of that buttons i don't need to disable the combinations of...
  11. Replies
    1
    Views
    576

    Active Internet Browser

    How to know if theres an active internet browser such as IE, Mozilla, Opera and so on running in a computer ?
  12. Replies
    19
    Views
    944

    Re: Programmer Need

    Wow thanks for your replies man, and i realized now that if a programmer radically use memorization everytime he code after 50 yrs. there's no assurance that all the codes that he does is still in...
  13. Thread: Data Report

    by VBLegend
    Replies
    8
    Views
    1,169

    Re: Data Report

    Thanks for the links, but recently i try it i did not find what i want. The possibility of using a "Sql Queries" nor DataSet and DataTable to be attach in a Crystal report.
  14. Thread: Data Report

    by VBLegend
    Replies
    8
    Views
    1,169

    Re: Data Report

    Especially if i can use a dataset or datatable to set in my crystal report
  15. Thread: Data Report

    by VBLegend
    Replies
    8
    Views
    1,169

    Re: Data Report

    Where can i find a full tutorial on Crystal Report for .net 2005. Everything that i need to know.
  16. Thread: Data Report

    by VBLegend
    Replies
    8
    Views
    1,169

    Re: Data Report

    How to make a reports that can be seen in my application. When i press a button on my form i want that it has a correspond report that will be shown to me. If i want a Cars Databse Report i want that...
  17. Thread: Data Report

    by VBLegend
    Replies
    8
    Views
    1,169

    Data Report

    How to make a report base on my database. Complete report with headers and footers and so on.
  18. Replies
    1
    Views
    514

    TableAdapter Question Cont.

    Recently i asked a question the possibilities of record duplication happen calling a TableAdapter.fill over and over again and thankfully found out the answer, by just clear first the DataTable or...
  19. Replies
    19
    Views
    944

    Re: Programmer Need

    What do you mean by the 2 and 3 thought ?
  20. Replies
    5
    Views
    597

    Re: [RESOLVED] TableAdapter QUestion

    Lucky ! ... Thanks again
  21. Replies
    5
    Views
    597

    Re: TableAdapter QUestion

    It's Dataset.Tables(0).Rows.Clear.

    Thanks for the reply Sakpal.
  22. Replies
    5
    Views
    597

    Re: TableAdapter QUestion

    Now that is what im looking for, but what if i use dataset not a datatable. Dataset don't have "Rows.Clear" function
  23. Replies
    19
    Views
    944

    Programmer Need

    Guys especially the professionals.

    What characteristic of a good programmer must have ?

    Is it Good in memorizing a code ?
  24. Replies
    5
    Views
    597

    [RESOLVED] TableAdapter QUestion

    Public Sub FillRecord()
    SampleAdapter.Fill(SampleDataTable)
    End Sub


    Is this correct, duplication may occur if you call the method over and over again ? I mean the "SampleDataTable" will...
  25. Replies
    3
    Views
    641

    Re: Listview Item Cleaning Up

    I have two forms, the first form "MainForm" activates this method "UserRecords()" first, and the the first form has a button that will open the second form.The second form will activate the method...
  26. Replies
    5
    Views
    1,059

    Re: Stored Database

    When i press the button that has a function of the code above in post #3 its ok the message will come up saying that Record Successfully Added. But when i look the database the record that i recently...
  27. Replies
    3
    Views
    641

    [RESOLVED] Listview Item Cleaning Up

    Public Sub UserRecords(ByVal lstRecords As ListView)
    Dim userCounter As Integer

    oleUserAdapter.Fill(oleUserSet)
    For userCounter = 0 To oleUserSet.Tables(0).Rows.Count - 1...
  28. Replies
    5
    Views
    1,059

    Re: Stored Database

    Sorry jm, well i've created a "mdf" database on my application and this is the connection string that i use:




    Private sqlConn As New SqlConnection("Data...
  29. Replies
    5
    Views
    1,059

    Stored Database

    I added a SQL database together with my project, unfortunately i cannot save nor edit,delete a record. Help here :wave:

    Database ConnectionString



    Data...
  30. Thread: Tutorial

    by VBLegend
    Replies
    2
    Views
    428

    Tutorial

    Ei guys where can i find a full step-by-step tutorial of ASP.Net ? :wave:
  31. Replies
    63
    Views
    117,222

    Re: Saving Images in Databases

    So this method is what they are talking about converting the image to a binary before it will be save in a database. And then once the image had been converted into a binary format no need to find...
  32. Re: I need help saving a picture to the database

    I think this link will help you.

    http://www.vbforums.com/showthread.php?t=469562
  33. Replies
    4
    Views
    746

    Constructor and Properties

    What is a constructor all about ? When to use it ?
    What is a properties all about ? When to use it ?
  34. Thread: VB Skins

    by VBLegend
    Replies
    8
    Views
    1,427

    Re: VB Skins

    That demo is just an screen shot in deviant art. So i just wondering if can get a skin like that and replace it in my application
  35. Thread: VB Skins

    by VBLegend
    Replies
    8
    Views
    1,427

    Re: VB Skins

    Yah its good, but i dont want a transparent form i want a skin like the picture shows So how to make like that one or where can i found skin like that
  36. Thread: VB Skins

    by VBLegend
    Replies
    8
    Views
    1,427

    Re: VB Skins

    I want to have a skin like the picture show. So that wherever the application installed the skin would be like that only. I want that my application has its own skin too like MSOffice 2007 they have...
  37. Thread: VB Skins

    by VBLegend
    Replies
    8
    Views
    1,427

    VB Skins

    How to change the skin of my application. I want that my application will have something glossy skins. So when they goping to install my application they will have a glossy skins.
  38. Replies
    1
    Views
    541

    Screen Resolution

    How to adjust the screen resolution of a computer in a one click. Well i have a plan program that have a 3 choices of resolution, and in one click the screen resolution will be adjusted base on the...
  39. Thread: XML Sub Items

    by VBLegend
    Replies
    5
    Views
    714

    Re: XML Sub Items

    This is the code i used :



    Public Sub LoadTree()
    Dim xmlContent As String
    Dim xmlFileReader As StreamReader = New StreamReader("Guide.xml")

    xmlContent =...
  40. Thread: XML Sub Items

    by VBLegend
    Replies
    5
    Views
    714

    Re: XML Sub Items

    Oops sorry ! . well i have this XML file and the content of my xml file will be displayed in a Treeview. The content of my XML is like the format of my first post. I can display the content of <Menu>...
Results 1 to 40 of 115
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width