Search:

Type: Posts; User: c@lle

Page 1 of 5 1 2 3 4

Search: Search took 0.55 seconds.

  1. Replies
    8
    Views
    4,577

    Re: Disabling the VB6 IDE Case Changer

    Hello, this is because somewhere in another module, the variable is cased differently.
    You can solve this by doing a find and replace of the variable and effectively replace all the occurences of...
  2. Re: activex dll doesn't survive after initialize

    nobody who can help me on this topic?

    what part of the question is not clear? i can run the activex dll from a visual basic exe and that works. then i can instantiate the object (and call thus the...
  3. Re: activex dll doesn't survive after initialize

    :confused:
  4. activex dll doesn't survive after initialize

    i'm trying to create an activex dll class.
    (new project, activex dll)

    then i add following functions:

    Option Explicit

    Private Sub Class_Initialize()
    MsgBox "Initialize"
    End Sub
  5. Replies
    4
    Views
    5,192

    ActiveDocument.Protect NoReset:=True or ...

    ActiveDocument.Protect NoReset:=True

    or

    ActiveDocument.Protect NoReset:=True Password:='blabla'
  6. create index -> replace text and insert records SPEED?!

    hello,
    i want to SPEED UP the creation of my index.

    what i'm doing is looping thru a database of articles, checking all the textfields and store every single word in my index database.
    this...
  7. create index -> replace text and insert records SPEED?!

    hello,
    i want to SPEED UP the creation of my index.

    what i'm doing is looping thru a database of articles, checking all the textfields and store every single word in my index database.
    this...
  8. Replies
    3
    Views
    696

    well, this is the xml i got (i'm using a 'virtual...

    well, this is the xml i got (i'm using a 'virtual directory' in IIS and querying a table on sql server with 'SELECT lijn_lastenboek_nl FROM tbl_alg_lijn WHERE lijn_ID like 'euro%' FOR XML AUTO')
    ...
  9. Replies
    3
    Views
    696

    xml - resolve tags or display as html

    XML file:
    - <root>
    <product id="1" text="<h1>Type</h1> The <b>name</b> of..."/>
    <product id="2" text="<h1>Type</h1> The name of..."/>
    ...
    </root>


    i want to display the text, using...
  10. yes indeed, where did you get this information? ...

    yes indeed, where did you get this information?

    i'm interested in 'chapter 8'
    please let me know.
  11. Replies
    1
    Views
    801

    just use: myText = "blabla" & vbcrlf & "second...

    just use:
    myText = "blabla" & vbcrlf & "second line" & vbcrlf & "third line"

    hth.
  12. this program (not freeware) checks your complete...

    this program (not freeware) checks your complete project and points out the dead links, unused variables, naming conventions problems, ...

    nice and it works fine....
  13. Replies
    1
    Views
    909

    find target file from shortcut (.lnk)

    how can i get the original file if a user has selected a *.lnk file?

    eg: on your desktop there is a shortcut 'WinZip.lnk' to a file on 'C:\Program Files\WinZip\winzip32.exe'. how can i get this...
  14. Replies
    11
    Views
    798

    to : Lord_Rat if it is an application you...

    to : Lord_Rat



    if it is an application you are running on your own pc, you just have to go to 'tools' - 'options'.

    then the 'security' tab and uncheck 'warn me when other programs try to...
  15. Replies
    12
    Views
    1,300

    i was talking about 'Outlook' or 'Eudora' not...

    i was talking about 'Outlook' or 'Eudora' not office 2000
  16. Replies
    12
    Views
    1,300

    just go to 'tools -> options' then goto...

    just go to 'tools -> options'
    then goto 'security' tab

    there is an option 'warn me if another program try to send message'

    uncheck this;

    hth.
  17. Replies
    8
    Views
    1,184

    in outlook express goto 'tools -> options' then...

    in outlook express goto 'tools -> options'
    then the 'security' tab and uncheck 'Warn me when other applications try to send mail as me'

    it is also the same in other programs like eudora, ...
    ...
  18. nobody found a solution for this?

    nobody found a solution for this?
  19. SOLVED access: put result of existing query in recordset

    what is the easiest way to put the result of an existing query (qryOutbox) in a ADODB recordset?

    thus, i have created a query in access, saved it with the name 'qryOutbox' and now i want to use...
  20. Replies
    16
    Views
    1,988

    he , you can change it to something like: ...

    he ,
    you can change it to something like:



    ErrH:
    If Err.Number = 2176 Then 'string became too long, clear it
    txtinfo.text = right(txtinfo.text, 1000)
    Resume
    ...
  21. Replies
    16
    Views
    1,988

    you can use a function like this Public...

    you can use a function like this



    Public Sub WriteInfo(sInfo As String)
    On Error GoTo ErrH

    txtInfo.Text = sInfo & vbCrLf & txtInfo.Text

    Exit Sub
  22. Replies
    1
    Views
    706

    you add a timer to your form with eg time=1000...

    you add a timer to your form with eg time=1000 ms.

    then the code in the timer will run every 1000 ms.

    now you call the function that changes your color and your text will change color every 1...
  23. Replies
    2
    Views
    24,996

    if vartype(sValue)= vbBoolean then ...

    if vartype(sValue)= vbBoolean then ...
  24. Replies
    2
    Views
    24,996

    check if variant is boolean RESOLVED

    how can i check if a variant is a boolean?

    please let me know.
  25. i have created the dll with the types defined in...

    i have created the dll with the types defined in it.
    then i have compiled it.

    how can i now use it (reference it?). please point this out to me.
    thanks a lot.
  26. cannot return my own user type to variant function

    i have following error:
    Only public user defined types defined in public object modules can be used as parameters or return types for public procedures of class modules or as fields of public user...
  27. Replies
    13
    Views
    1,569

    the easiest way: place a webbrowser control on...

    the easiest way:
    place a webbrowser control on your form, name it wbSource

    browse to page with

    wbSource.Navigate (sURL)

    use

    debug.print wbSource.Document.body.innerhtml
  28. Replies
    1
    Views
    1,337

    create a new .bas file on the fly?

    how can i 'add a new module' by code?

    i want to add a module, write some text to it and then save the project with the new module added? how can i do this?
  29. Replies
    9
    Views
    1,237

    be sure that your object is an array (so you have...

    be sure that your object is an array (so you have one myObject(0) item).

    then you can use: load myObject(ubound(myObject))

    this will load a new item.
    you can reach it by using "myObject(1)."
    ...
  30. ?nobody

    ?nobody
  31. mapi mail : how to check other folder than inbox?

    hello,
    i'm using mapisession and mapimessages to check email account.

    everything is working fine, but how can i check mail in other folder than 'inbox'?

    i want to check mail in the folder...
  32. Replies
    6
    Views
    1,741

    how do i find out what url is clicked? so how...

    how do i find out what url is clicked?

    so how can i intercept and do something with this url (thus not using the browser to display the url). i want to cancel the click!

    thanks.
  33. Replies
    6
    Views
    1,741

    thanks a lot. where did you find this...

    thanks a lot.

    where did you find this information?
  34. Replies
    6
    Views
    1,741

    webbrowser - view source

    i'm using the 'webbrowser' control in my application.

    i use 'wb.navigate ("www.website.com")' which correctly opens the wanted website.

    now i want to display the 'html-source' of this webpage...
  35. Replies
    1
    Views
    317

    autorenaming files

    hello,
    i've used the example code of the 'copy file dialog box' for deleting files in a subdirectory.

    see link http://www.vb-world.net/files/shfileop/

    but now i want to copy files from one dir...
  36. Replies
    4
    Views
    706

    i think it's true. if i'm right i think there's a...

    i think it's true. if i'm right i think there's a property 'toprow' or 'visibletoprow' or something like that.

    that gives you the 'offset' to the rows that are not visible (they are way up in the...
  37. Replies
    57
    Views
    2,350

    it seems to me that you are complicating your...

    it seems to me that you are complicating your prog.
    the problem is not the buttons, but the way you are storing the results.

    make a kind of an array with the answers, so that you afterwards can...
  38. Replies
    57
    Views
    2,350

    it seems to me that you are using the wrong kind...

    it seems to me that you are using the wrong kind of buttons.

    you have two possibilities:

    use the 'option button' so that the user can only select one answer out of the array of answers

    or
    ...
  39. Thread: ismissing

    by c@lle
    Replies
    6
    Views
    738

    because you are DECLARING the optional variable,...

    because you are DECLARING the optional variable, it is initialized to its default value.

    so if you are using a variant, it can have an 'ismissing' value.

    but a string is initialized as ""...
  40. Replies
    4
    Views
    370

    or do you mean something like this: ...

    or do you mean something like this:



    Private Sub Command1_Click()
    Dim sText As String

    sText = InputBox("Type your message")
    MsgBox "Your message was : " & sText
    End Sub
Results 1 to 40 of 180
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width