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

Search:

Type: Posts; User: WoF

Page 1 of 80 1 2 3 4

Search: Search took 0.21 seconds; generated 44 minute(s) ago.

  1. Thread: About a Friend

    by WoF
    Replies
    11
    Views
    2,238

    Re: About a Friend

    Thank you all for recognizing and commenting.
    Right Hannes, he really was a genius, not only in programming, and had a fast grasp on things. We often exchanged help with each other's projects.
  2. Thread: About a Friend

    by WoF
    Replies
    11
    Views
    2,238

    Re: About a Friend

    It seems he did not have many personal contacts even here in the forums...
  3. Thread: About a Friend

    by WoF
    Replies
    11
    Views
    2,238

    About a Friend

    Hello my friends at CodeGuru,

    in case you do not yet know, I'm here to give you some sad news.
    Our colleague and friend known as Wizbang has recently passed away. His father found out we had...
  4. Replies
    2
    Views
    8,346

    Re: Load TIF into a PictureBox?

    Very good hint, DataMiser. But it seems WIAAut.dll is not genrally aboard an XP system, not even SP3, but can be downloaded from here:
    http://vbnet.mvps.org/index.html?code/imageapi/mswaidll.htm
    ...
  5. Replies
    7
    Views
    1,732

    Re: ASCII Strings in Custom Resource Text File

    Sounds enormous. I only come up tp 10MB for the exe.

    How large is your physical memory in the computer?

    On the other hand, without seeing the code we could not advise you properly what to do....
  6. Replies
    13
    Views
    4,339

    Re: use of shell for calling perl from vb 6.0

    As I understand you want to run multiple scripts one after the other.
    You have to understand this about the Shell() function: It will start the script, but then will immediately continue execution...
  7. Replies
    13
    Views
    4,339

    Re: use of shell for calling perl from vb 6.0

    The shell function can be used to execute another program from within your VB6 application. You can run bat, cmd, vbs, exe and other directly executable files like:


    dim proc as long
    proc =...
  8. Re: object required error for Scripting.FileSystemObject

    Fine. That's what I thought.
    I dont know much about ASP, but when creation of an object fails you get a different error like "cannot create object".
  9. Replies
    7
    Views
    1,732

    Re: ASCII Strings in Custom Resource Text File

    This is rather strange. I happen to maintain a huge VB6-application with 26 forms, a dozen UserControls and ssome thousand lines of code, too, and never got problems. I might have also about 3000...
  10. Re: object required error for Scripting.FileSystemObject

    If you get the Object required error, I'd think that the name "Server" is not defined.
    Find out which object the name Server refers to. Maybe this object is not available within the scope of your...
  11. Replies
    7
    Views
    1,732

    Re: ASCII Strings in Custom Resource Text File

    I think, this does not quite cover up what the OP wants.

    Kevin, where is the point where you want to save memory? In the custom resource file?
    In memory you would not save a byte by using plain...
  12. Replies
    6
    Views
    3,971

    Re: How to Create PictureBox Oval form?

    This can only be achieved by API calls dealing with regions. What you need can possibly be achieved using the CreateEllipticRgn API call
    http://allapi.mentalis.org/apilist/CreateEllipticRgn.shtml...
  13. Replies
    6
    Views
    6,065

    Re: How to stop image flickering

    Well yes. It is rather simple. I have modified your sample and added the use of TransparentBlt. Look at the attached project.

    a) Note that I have removed all image controls from the water...
  14. Replies
    6
    Views
    6,065

    Re: How to stop image flickering

    That's true, but in this case you ought to download the sample and look at the boats flickering. You have to see the effect to get the impression. There is no actual error in the code.

    I think...
  15. Replies
    21
    Views
    5,195

    Re: How to add midi sound in vb6

    There is the PlaySound API call which can play a sound async or sync, but as far as I know it does play .wav files and not midi...
  16. Replies
    4
    Views
    8,311

    Re: Search for data in a MSHFlexGrid

    I think this little piece of code might cause trouble:


    For xNext = 0 To fgdCompany.Rows
    fgdCompany.Row = xNext
    If xNext = fgdCompany.Rows Then
    MsgBox "Record not found"
    ...
  17. Re: Out of Memory - Reading a 80MB file into memory in VB6

    If the web service only accepts a single POST command, splitting up is not an option.
    I'd first see what is causing the problem:
    Split up the troublesome line into two seperate commands. First read...
  18. Replies
    21
    Views
    4,245

    Re: Export Excel to 2 tables Access ??????

    You should first remove (or outcomment) the On Error Resume Next statement and then run the program to see where an actual error occurs.
    With the On Error Resume Next you never find out anything....
  19. Re: sort a field in listview items by letter by letter entered in textbox txtsearch

    Change to


    rs.Open "Select * from accreg where Title like '" & txtsearch.text & "%'", db, 3, 3

    I'm not quite sure, but I think there are some spaces required, at least between "like" and the...
  20. Re: How to open different variable file in excel application?

    There are a couple of mistakes you made:
    a) array indexes start at 0 (except you have stated otherwise)
    so you have to adress your singlefile() array differently.


    op = True...
  21. Re: Access 2003 Visual Basic Run Time Error '424'

    Please make absolutely clear which line is throwing the error.

    The "Object Required" error tells you, that an object variable which should hold the reference to an object, has the value of...
  22. Thread: MCISendString

    by WoF
    Replies
    23
    Views
    8,223

    Re: MCISendString

    And anyway the original post is from year 2000 and I doubt that the OP is still interested in an answer. :)
    The problem seems to be outdated and the solution comes 12 years too late. ;)

    I wanted...
  23. Replies
    8
    Views
    1,400

    Re: Stuck With Visual Basic 6.0

    Although Val being a reserved word, VB wouldn't mind the usage of Val for a variable within a sub, as long as you dont make use of the Val() function in the same block of code. So making a variable...
  24. Replies
    8
    Views
    1,400

    Re: Stuck With Visual Basic 6.0

    The code is obviously designed so that the first time click will open the word document and do a first Find.
    When the statement executes, for the second time, there might not be a visible result, if...
  25. Replies
    6
    Views
    2,374

    Re: Add items to LynxGrid not the same type error?

    That's what I hinted, too. But then I thought, if these spaces where really there, an error must have already occured in the rsstaff.open statement. The code wouldn't even get to the line where the...
Results 1 to 25 of 1996
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured