CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: vbArch

Search: Search took 0.03 seconds.

  1. Thread: XML and VB.NET

    by vbArch
    Replies
    4
    Views
    1,115

    Re: XML and VB.NET

    You can also use A Dataset to store your data. The following is a sample project to show how to load and save a dataset.


    <Code>
    Imports System.Data
    Imports System.Data.SqlClient
    Imports...
  2. Thread: Rounding up?

    by vbArch
    Replies
    5
    Views
    1,997

    Re: Rounding up?

    Every VB Programmer should have this one


    http://www.amazon.com/gp/product/0735613753/qid=1143051929/sr=1-1/ref=sr_1_1/104-9088175-4089548?s=books&v=glance&n=283155
  3. Replies
    45
    Views
    6,198

    Re: New Database to learn normalization.

    A good place for additional info
    http://www.functionx.com/adonet/

    http://databases.about.com/od/specificproducts/a/normalization.htm
  4. Replies
    3
    Views
    846

    Re: Datagrid: Using the "UnSelect" method

    Sorry about that should be
    Me.DataGrid1.UnSelect(DataGrid1.CurrentCell.RowNumber)
  5. Thread: Help with exe

    by vbArch
    Replies
    2
    Views
    441

    Re: Help with exe

    this is side by side execution to avoid dll hell
    see
    http://www.ssw.com.au/SSW/Database/DLLHell.aspx
  6. Replies
    3
    Views
    846

    Re: Datagrid: Using the "UnSelect" method

    try using
    DataGrid1.CurrentCell.ColumnNumber
  7. Replies
    2
    Views
    644

    Re: VB.Net & Database Proyect Guidance

    For the situation u describe I would look at storing my data in XML, no support requirements, hosting ect... and .net has excellent support for it. Then use html and stylesheets to do your reporting
  8. Replies
    10
    Views
    1,590

    Re: Filling Datagrid from Access Database

    Your use of try catch blocks makes this difficult to debug.

    Replace your catch statement with this and the app will tell you what is wrong, I suspect it is the sql statement
    Catch ex As...
  9. Replies
    4
    Views
    683

    Re: image on buttons

    make the button style graphical
  10. Replies
    4
    Views
    1,629

    Re: autogenerate user ID

    Curious, as to why you need to repopulate the ID, Numbers are cheap and this is the whole purpose of AutoIncrementing an ID.
  11. Replies
    4
    Views
    1,073

    Re: Concatenating strings to be a Date value

    Not quite sure I understand the problem this code shows how to do it with 3 strings for month,day, year and the second just sets a date for a string date

    Dim d As String = "15"
    Dim m As...
  12. Replies
    2
    Views
    2,171

    Re: Make Combobox values non-changeable

    Change the DropDownStyle Property of the ComboBox to DropDownList
  13. Replies
    4
    Views
    1,073

    Re: Concatenating strings to be a Date value

    look at the overload method 2 of the date
    Dim birthDate As New Date(val(Year), val(Month), val(Day))
  14. Replies
    7
    Views
    1,534

    Re: Textbox Event Problem

    if you change your default button to
    MsgBoxResult.No that will fix the problem
  15. Re: DataGrid Save... I'm clueless here.

    If you are using a dataset to populate your grid then all you have to is use the datasets WriteXML and ReadXML functions like this


    Private Function SaveData(ByVal FileName As String, ByVal...
  16. Replies
    8
    Views
    39,674

    Re: Read/Write to .ini files in vb.net

    See this link for the Dot net way to do this
    http://msdn.microsoft.com/vbasic/atthemovies/howto/default.aspx
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured