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

Search:

Type: Posts; User: Heulsay

Page 1 of 5 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    11
    Views
    1,653

    Re: get Handle from a launched IE browser

    This api may do what you want :

    Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters...
  2. Replies
    5
    Views
    838

    Re: Errorhandler query

    I think your problem is with the Goto CreateMyFile1 as vb think the process is still processing an error in Errorhandler1. You should use a Resume or Resume Nest instead of Goto CreateMyFile1 as Zeb...
  3. This is very interesting Wiz, I noticed the...

    This is very interesting Wiz,

    I noticed the behavior before using a new control. I first though that control was buggy when I moved it around. Then after investigation I found that it was...
  4. If anyone is interested, here is my solution to...

    If anyone is interested, here is my solution to PreviousInstance : DDE or LinkItem as VB call it.

    On the main form, have these properties set :
    LinkMode : 1 - Source
    LinkTopic : "AppLinkTopic"...
  5. i'd go with something like that : Type...

    i'd go with something like that :


    Type TStudent
    Name as string
    End Type

    Type TCourse
    CourseName as string
    aStudents() as TStudent
  6. Replies
    7
    Views
    755

    How many times to you loop really ? The only...

    How many times to you loop really ? The only reason i see it may be doing this is that i is passed by reference to SWFFunctions.SetFlows and SetFlows increment your value of i and return the new...
  7. Replies
    19
    Views
    2,535

    Yeah, use INSTR to find the the position of a...

    Yeah, use INSTR to find the the position of a string within another string. You may also need to check for the end token cause you don't want your server to work on incomplete string. (and the...
  8. Replies
    19
    Views
    2,535

    I think the best solution to your problem is to...

    I think the best solution to your problem is to define a start and end token for each strings sent to your server.
    This way, your server will be able to deal with more then one string received in...
  9. Replies
    33
    Views
    6,434

    Well for encryption, if I remember correctly, you...

    Well for encryption, if I remember correctly, you can have some sort of os level encryption system for your files, so any software / access to files is done as usual. I also think that you can do...
  10. Replies
    33
    Views
    6,434

    If your data are so critical and secret, I would...

    If your data are so critical and secret, I would recommend to use some kind of disk encryption before anything else so that someone who get access to your files won't be able to read the real stuff...
  11. a simple search on google with your problem : ...

    a simple search on google with your problem :

    "Physical database not found." crystal report

    gave me alot of results, this one deal specialy with the problem occuring only on the client...
  12. Replies
    3
    Views
    793

    I've worked on a hook class for textbox before, I...

    I've worked on a hook class for textbox before, I trimmed it down to the basic. It allow you to set events for any existing textbox.

    here is the class code :

    Option Explicit

    ' ClsHook
    '...
  13. If you want the number of the first row shown in...

    If you want the number of the first row shown in the flexgrid (excluding fixed rows), you can simply use the .TopRow property
  14. Replies
    20
    Views
    117,276

    I worked with this ExecCmd code before, I like it...

    I worked with this ExecCmd code before, I like it because it will wait until the dos command is done to return.

    I made some verry small modification to it so i can choose to show or not the dos...
  15. Replies
    2
    Views
    696

    You can drop your OCXs directly in the .exe...

    You can drop your OCXs directly in the .exe folder, like if you want to have a vb autorun on a CD, all required ocx need to be in the same folder as the .exe.
  16. Replies
    3
    Views
    1,656

    If I remember correctly, pop3 have a HEAD command...

    If I remember correctly, pop3 have a HEAD command wich return only the header of an email, and if I understand correctly, email clients like outlook store thoses info somewhere in order to know which...
  17. Replies
    0
    Views
    834

    Find app top modal window

    I've been trying to code this without success. Here is what I want to do exactly :
    I want a function that return the handle or name of the top most (modal) window of my application (not necessarily...
  18. Replies
    11
    Views
    4,416

    Search the web for Obfuscated Perl, Perl is the...

    Search the web for Obfuscated Perl, Perl is the best language for obfuscated code. I remember an encryption code wich looked like an ascii dolphin.

    I don't think you can achieve any level of...
  19. Replies
    3
    Views
    695

    I think you have to set the style of your Combo...

    I think you have to set the style of your Combo to 2 - Dropdown List.
  20. Replies
    1
    Views
    3,052

    Listview behave like a LisBox : .View = 3 -...

    Listview behave like a LisBox :

    .View = 3 - lvwReport
    .LabelEdit = 0 - lvwAutomatic
    .HideColumnHeaders = True
    .HideSelection = False ' Keep highlight
    .FullRowSelect = True

    '...
  21. Replies
    9
    Views
    1,312

    A simple solution would be to use a RichTextBox...

    A simple solution would be to use a RichTextBox control (from microsoft) instead of a textbox. And then call the GetLineFromChar funciton of the control to get the current line.
  22. Worked fine on my computer, p4 1500 (1.x secs to...

    Worked fine on my computer, p4 1500 (1.x secs to run) and I got it all except BIOS Serial number (win98 here)

    One thing, it seems to get my PPP Mac address, instead of my ethernet adaptor. I think...
  23. Replies
    4
    Views
    1,176

    My bad :) I must still be sleeping this morning...

    My bad :) I must still be sleeping this morning but i read you were looking for a code that sort quickly !

    Have a nice day !
  24. Replies
    4
    Views
    1,176

    I'm sure you can find some nice sort code on this...

    I'm sure you can find some nice sort code on this forum with a simple search. Anyway, Here's the shell sort :


    Dim Inter As Double
    Dim iCtr As Double
    Dim iCtr2 As Double
    Dim bEnd As...
  25. Replies
    2
    Views
    732

    I don't know if it's any related, but when I have...

    I don't know if it's any related, but when I have alot of stuff open (use alot of memory) all tooltip in the vb5 IDE also appear in the task bar as running programs :)
Results 1 to 25 of 124
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured