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

Search:

Type: Posts; User: Illuvatan

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Remembering my past Visual Basic Days there was a...

    Remembering my past Visual Basic Days there was a

    Listview1.Listitems.Item(index).Subitems(subindex).Icon property where you can set and remove icons ..

    explain a bit closer what you want to...
  2. Replies
    4
    Views
    1,027

    probably not the simplest case.. but that would...

    probably not the simplest case.. but that would work with every mail client out there.
    You could just specify on Microsoft Outlook and program a plugin for that.. but I don't really know how good...
  3. Replies
    5
    Views
    856

    Don't really know because I never used...

    Don't really know because I never used recordset.delete .. SQL ist a wonderful language and it is much more portable. if using ado you can just change the connection string and you can use a SQL...
  4. Replies
    0
    Views
    704

    ODBC Datareader and Connection

    Hi folks,

    My Problem is that I can't execute two SQL queries at the same time using one connection.
    I want to create two ODBCDataReader objects by using odbccommand.ExecuteReader()
    The first one...
  5. Replies
    4
    Views
    1,027

    There is no real code that would suit your needs....

    There is no real code that would suit your needs.
    But I had programmed a Mail server in Visual Basic so I can give you a clue how to handle that problem.

    You could program a SMTP gateway....
  6. Replies
    5
    Views
    856

    DELETE FROM WHERE .. delete the record through...

    DELETE FROM WHERE .. delete the record through SQL command..

    greetings UNI
  7. Replies
    1
    Views
    2,520

    Ok, I just wanted to update this. Yesterday I...

    Ok, I just wanted to update this.

    Yesterday I found a great piece of free software providing me with the CVS features I needed. It is called Subversion (SVN) and there is a really great Interface...
  8. Thread: Weird Error

    by Illuvatan
    Replies
    3
    Views
    731

    have you tried the Application on another machine...

    have you tried the Application on another machine yet?
    because that doesn't seem to be an error that has anything to do with your code

    greetings uNI
  9. No.. there is no way. In other languages like...

    No.. there is no way.

    In other languages like C# it is easiy, but it is simply not possible on VB. I searched long time for a solution because I had a quite big app that used a Audit Engine and I...
  10. Use the Microsoft Winsock Control to create a TCP...

    Use the Microsoft Winsock Control to create a TCP connection to the server and read the RFC for Telnet communications. that should enable you to send data to the telnet server.

    indeed the telnet...
  11. Replies
    2
    Views
    753

    Re: Directory Explorer

    Use the MSCommondialog Control.
    You must first add the Microsoft Visual Basic Common controls (or somehow like that) to you project and then you can use the commondialog to show the windows printer...
  12. Replies
    3
    Views
    637

    The form has a property called "ShowInTaskbar"...

    The form has a property called "ShowInTaskbar" and you can set that to true or false


    setting it to true will hide it from the taskbar..

    But I would recommend not only setting Form1.Visible =...
  13. Thread: Weird Error

    by Illuvatan
    Replies
    3
    Views
    731

    there is no attachmend.. but I guess your...

    there is no attachmend..

    but I guess your problem is here:

    Shell ChosenRsPath & "ROGUESPEAR.EXE" & " -server " & RsP, vbNormalFocus

    and I think I can also guess why..

    You are trying to...
  14. Replies
    3
    Views
    785

    I had exactly the same problem and asked here for...

    I had exactly the same problem and asked here for help.. just a few days before you showed up :) ..

    greetings UNI
  15. Replies
    6
    Views
    572

    Visual Basic isn't an object oriented language.....

    Visual Basic isn't an object oriented language.. but I know what you mean because I was programming VB6 in a OOP way (somehow)

    I used one bas module for common functions I always need to call like...
  16. Replies
    3
    Views
    785

    You want many buttons to share the same function,...

    You want many buttons to share the same function, and you want to identify what button was clicked isn't it so?

    You simply create the buttons with the windows forms designer (you can do that by...
  17. Replies
    4
    Views
    899

    Consider writing your application in something...

    Consider writing your application in something else than .NET and consider using a fast database server.

    I know C# is a really great language, but when executing managed code the whole thing slows...
  18. Replies
    5
    Views
    1,251

    I don't think you will do that now.. but if you...

    I don't think you will do that now.. but if you are planning a re-write you should consider getting familiar with DAO and try it that way.

    greetings UNI
  19. perfect.. I love you :) sorry.. but my...

    perfect.. I love you :)

    sorry.. but my deadline is 17:45 and I just had the problem how to cast a form..

    god I should have listened to what the guy at university told us about Java.. it's the...
  20. additional question. How can I access the...

    additional question.

    How can I access the object that was clicked?

    sender has only got the equals, gettype and tostring functions, i need to access things like height, width, text and tag of...
  21. thanks a ton :) greetings UNI

    thanks a ton :)

    greetings UNI
  22. Create Buttons from Source and add Events

    Hi. I have got a problem and I hoped you would help me.

    I use this function to create a button within an application

    private void AddButton(string Text)
    {
    Button cmdTest = new Button();...
  23. Replies
    2
    Views
    1,641

    You want to insert everything the user had...

    You want to insert everything the user had written to a flexgrid into the datebase

    start the for loop

    For
    execute("INSERT INTO ...")
    Next

    or you could do that
  24. Thread: Path problem

    by Illuvatan
    Replies
    8
    Views
    750

    maybe you should try thinking about assembling...

    maybe you should try thinking about assembling strings?

    The connection string is a string that can be created like we did with the app.path

    strConn = "PROVIDER=Microsoft.Jet.OLEDB.3.51;Data...
  25. Replies
    21
    Views
    13,138

    Unload me isn't closing the whole app.. Add to...

    Unload me isn't closing the whole app..

    Add to your Exit Button the Code:

    Exit() (or something like that) and your program will close without you having to think about any forms that may be...
Results 1 to 25 of 45
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured