Search:

Type: Posts; User: cbuosi

Search: Search took 0.03 seconds.

  1. Re: ASP.NET CRUD Site using Bootstrap, jQuery and SQL-Server. (PT_BR)

    Ill upload again in another server, and update de original post....
  2. Replies
    14
    Views
    34,871

    Re: SNES.net - SNES emulator written in VB.NET

    Hey omundodogabriel, any updates??
  3. Replies
    40
    Views
    42,719

    Re: Expandable GroupBox

    Nice code!
  4. Replies
    5
    Views
    19,449

    Re: [VB .NET] [Controls] SplitButton Control

    Nice code!
  5. Thread: Cue banner text

    by cbuosi
    Replies
    5
    Views
    7,978

    Re: Cue banner text

    Nice code. Thanks for the submission.
    Im sorry it doesn't work in a combobox when its a DropDownList.
  6. Replies
    14
    Views
    34,871

    Re: SNES.net - SNES emulator written in VB.NET

    I believe that your code is too advanced for people here to comment on (including me), but dont bother with this, keep the amazing work...

    I also saw your NES emulator, it got sound! Cant wait for...
  7. Replies
    14
    Views
    34,871

    Re: SNES.net - SNES emulator written in VB.NET

    Muito legal cara, parabens!

    Did you port it from some other project?

    Amazing!
  8. (IBM Mainframe) TN3270 Client (VB.NET) using Open3270 (C#)

    108323

    Based on Open3270

    - Fixed some bugs and warnings from the original Open3270
    - Fixed screen accents errors (áéíóú)

    Source code
  9. Re: ASP.NET CRUD Site using Bootstrap, jQuery and SQL-Server. (PT_BR)

    edit.. double post...
  10. ASP.NET CRUD Site using Bootstrap, jQuery and SQL-Server. (PT_BR)

    I made this simple site using:
    - Asp.net
    - Bootstrap (twitter)
    - jQuery
    - SQL server 2008 (access to table using SP)


    its a one page CRUD (...
  11. VB.net Data Access Layer (DAL) class (SQL Server)

    Here is a little DAL class i´ve made and use in all my projects.
    I hope it helps someone....

    It can call procedures and direct sql statements.
    You must feed the parameters before calling the...
  12. Replies
    13
    Views
    10,412

    Re: TCP Client/Server Classes

    No problem, thank you anyway!
  13. Replies
    13
    Views
    10,412

    Re: TCP Client/Server Classes

    Bumping an old thread.....
    OP, your source doesnt compile...

    any chance to upload a working version?

    'user' class error, i already got the zip dll...

    tks
  14. Replies
    8
    Views
    900

    VS 2010 Re: Packaging a database with an app

    SQLite is a good choice too....
  15. Thread: Move File

    by cbuosi
    Replies
    15
    Views
    1,778

    VS 2010 Re: Move File

    Nice, you should use path.combine() to avoid problems regarding "\" in the strings



    Imports System.IO 'on the top of your source file

    My.Computer.FileSystem.MoveFile(Path.Combine("C:\dir1\",...
  16. Thread: Move File

    by cbuosi
    Replies
    15
    Views
    1,778

    VS 2010 Re: Move File

    Most of the time, its harder to know what people want than providing an answer.
    Techno, in case you want to move several files within a folder, you have to loop though them:




    Public Sub...
  17. Thread: Database.

    by cbuosi
    Replies
    18
    Views
    1,366

    VS 2010 Re: Database.

    Didn´t know.

    I ported a large project that I had in vb6 to .Net, so i bring a lot of bad habits from it.
  18. Replies
    7
    Views
    5,138

    VS 2010 Re: Get path of active window

    Ah ok, btw , i didin´t know windows had paths... do you mean Handle?
  19. Replies
    2
    Views
    645

    VS 2008 Re: Textbox to Excel

    Use this code as a starting point, it will not work without modification
    because i had to take some things out (it uses a collection with the values)




    Public Function SaveExcel(Optional...
  20. Replies
    7
    Views
    5,138

    VS 2010 Re: Get path of active window

    System.Windows.Forms.Application.StartupPath <- onlye the path
    System.Windows.Forms.Application.ExecutablePath <- path + executable name.
  21. Thread: Database.

    by cbuosi
    Replies
    18
    Views
    1,366

    VS 2010 Re: Database.

    Forgot to say, you must clsCrypto::DeCripta your encrypted value before use it inside your app.
  22. Thread: Database.

    by cbuosi
    Replies
    18
    Views
    1,366

    VS 2010 Re: Database.

    Here is what i do:

    My Crypto class:



    Imports System.Security.Cryptography
    Imports System.Text

    Public Class clsCrypto
  23. Thread: Database.

    by cbuosi
    Replies
    18
    Views
    1,366

    VS 2010 Re: Database.

    encrypt the password / user / host
  24. Replies
    6
    Views
    4,834

    VS 2005 Re: filter a combobox with distinct values

    Hi Shatcher
    usually, when you are going to fill a combo, you make a specific query (or procedure) to do that.
    why dont you do a select DISTINCT fileds from table ?

    If that is not your case, you...
  25. Replies
    8
    Views
    6,419

    VS 2010 Re: Moving a TreeView node up/down at run-time?

    Hi,
    here is me code for a ListView, its almost the same as the treeview (just uses the same level)


    Public Sub UpSelected()

    If Me.SelectedItems.Count = 0 Then
    Exit...
  26. Replies
    2
    Views
    1,814

    VS 2010 Re: Treeview checkbox problem!

    This kind of treeview implementations is very anoying...
    You got to check the parent and child nodes (as you did)...
    glad you solved your problem.
  27. Re: Show form after load / place everything

    Well, after some research, i made some changes to my app:

    1- "Me.DoubleBuffered = True" in the constructor, just before InitializeComponent(), using kaliman79912 code.

    2- Me.BeginUpdate() and...
  28. Re: Show form after load / place everything

    I&#180;ll try solutions #5 and #6 and will report if it worked or not.

    Thank you all!
  29. Re: Show form after load / place everything

    Found my VB6 code:


    Public Declare Function LockWindowUpdate Lib "user32" (ByVal hwnd As Long) As Long

    used this way:



    LockWindowUpdate Object.hwnd
  30. Re: Show form after load / place everything

    Hi incidentals,
    thank you for your sugestion,

    i added a:


    me.visible = false


    in the beginning of the Activated event
  31. [RESOLVED] Show form after load / place everything

    Hi folks!

    I have a little problem, nothing very serious, but something that anoys me and i can´t solve.

    I have a VB.NET windows form project, with a main MDI form containing a menu.

    I load...
  32. Replies
    5
    Views
    2,623

    VS 2010 Re: Change TextBox State with CheckBox

    Hi, if you have 1 checkbox to several textbox, you can do this (in the Checkbox CheckedChanged event:



    Private Sub CheckBox1_CheckedChanged(sender As System.Object, e As System.EventArgs)...
  33. Replies
    263
    Views
    28,689

    I didnt switched yet because i think it just...

    I didnt switched yet because i think it just SUCKS
    (too bolted / broke compatibility / too slow etc),
    but, as a professional Programer/Analyst,
    i know that early or sonner, ill just have to do...
  34. Replies
    8
    Views
    651

    Hi, i dont want to be rude, but you could just...

    Hi, i dont want to be rude, but you could just RTFM for
    this kind of question...


    the "me", that you refer is just the name of the object
    that your code is placed (or somethig like that)
    ...
  35. Replies
    38
    Views
    2,127

    I wold sugest that you use multiple ranges of...

    I wold sugest that you use multiple ranges of incoming
    tcp port int the server side, something like:

    Some examples

    80~90
    1000~1010
    10000~10010

    that´s 30 chances....
  36. Replies
    2
    Views
    632

    Hi xaview For this kind of aplication (instant...

    Hi xaview

    For this kind of aplication (instant messager) its better to
    implement a client/server app , connecting through windows socket.

    this way, it´ll be easy to have a list of the IPs...
  37. Replies
    3
    Views
    559

    Thats it! Nice, clean and easy. Thanks!

    Thats it!

    Nice, clean and easy.

    Thanks!
  38. Replies
    3
    Views
    559

    SQL Help [RESOLVED]

    Hi folks,

    I have a little question about SQL, here it goes:
    a have a table, with the struct:

    COD | NAME | VALUE
    -------+-----------+------
    1 | CARLOS | 100
    2 | JOE |...
Results 1 to 38 of 38



Click Here to Expand Forum to Full Width