Search:

Type: Posts; User: Bulevardi

Search: Search took 0.01 seconds.

  1. Replies
    45
    Views
    3,848

    Re: Customer is NOT always right!!!

    Brilliant site!
    Thanks for sharing.
    Going to upload some nice quots aswel soon, as I work as customer service.
  2. Replies
    2
    Views
    2,256

    MsOf10 Re: 2007>2010 Calendar Control Reference

    A calendar without the active x calendar controls?
    Like this one:
    http://bulevardi.be/?content=scripting&example=exvb7
  3. Replies
    3
    Views
    4,289

    Re: EXCEL VBA OCX Control

    Try without the .ocx file ?
    Just a calendar that works everywhere without installing anything.

    Like this example:
    http://bulevardi.be/?content=scripting&example=exvb7
  4. Mail merge in word for mailing labels with excel.

    If you want to make mailing labels with data from an Excel table, so you can mail merge this in Word, you can do it automatically with a simple VBA script.
    Requirements: Excel and Word 2010,...
  5. Re: [tutorial] webbased guestbook with Excel as database

    Can someone tell me if the property .Value is really necessary?

    objWorksheet.Cells(intNewRow, 2).Value = strName

    This works aswel:
    objWorksheet.Cells(intNewRow, 2).Text = strName
    Or even:...
  6. [tutorial] webbased guestbook with Excel as database

    If you want to make a guestbook or other kind of messaging system for a web application, and you don't have a database available like MySQL with PHP or with ASP, then I have this free solution for...
  7. Re: Vbscript: Find, FindNext, Count # rows where statement

    Finally got it running... was actually quite easy, but overlooked the InStr function and always tried with Find or Match techniques...





    Dim strsearch, loopCount, myRow

    strsearch =...
  8. Re: Vbscript: Find, FindNext, Count # rows where statement

    Anyone?
  9. Re: Vbscript: Find, FindNext, Count # rows where statement

    therightrow = objRange.Find(strSearch).Row
    Perhaps I should make an array somehow from this .Find .Row thing...
    And then iterate through the array
    But how...
  10. Vbscript: Find, FindNext, Count # rows where statement

    Hi,

    I have a vbscript that needs to search in an excel sheet to find a specific word (strSearch).
    Then, the script needs to know on which rownumber this word was find.
    And on top, the script...
  11. Re: VBscript to write javascipt function that pass arguments

    It's working already.

    For those who are interested, I wrote a Javascript VBScript tutorial:
    http://bulevardi.be/?content=scripting&example=exvb1#7

    Contains the following stuff:
    * [Basics...
  12. Re: VBscript to write javascipt function that pass arguments

    Ok I see, I'll give it a try in VBscript only.

    The thing is I'm better in Javascript and new in VBScript.
    So I thought I just get the values I need with VBScript and work further with Javascript...
  13. Re: VBscript to write javascipt function that pass arguments

    Well it's a project with Excel data that need to be read in Internet Explorer.
    VBScript seemed the easiest way...

    If I would do this project on my own, I did it with web technologies like I do...
  14. VBscript to write javascipt function that pass arguments

    This example is much simplified as the original script.
    VBScript is making a value, passes this to Javascript, which puts that value into a div tag.
    Now, as you see in the VBScript, the value...
  15. Replies
    4
    Views
    1,168

    Re: vbscript message database with excel

    Ask that question to my boss.... (he'll explain about budgets and infrastructure we don't get for the project)
    If it was my own stuff, I already did it with web technologies like I do for my...
  16. Replies
    1
    Views
    1,469

    Re: vbscript message database with excel

    I already started with this:

    <script type="text/vbscript">

    Function myVBfunction()

    ' vars for excel
    Dim wbMessages : wbMessages = "messages.xls"
    Dim sheetMessages :...
  17. Replies
    4
    Views
    1,168

    Re: vbscript message database with excel

    Hmm, yes, but we're going to do it with Excel anyways :p

    I already started with this:

    <script type="text/vbscript">

    Function myVBfunction()

    ' vars for excel
    Dim wbMessages :...
  18. Replies
    1
    Views
    1,469

    vbscript message database with excel

    Hi,

    I need to make some sorth of board where news messages/posts will be shown.
    As we don't have a server or database available like MySQL or PHP or ASP or stuff like that,... I thought about...
  19. Replies
    4
    Views
    1,168

    vbscript message database with excel

    Hi,

    I need to make some sorth of board where news messages/posts will be shown.
    As we don't have a server or database available like MySQL or PHP or ASP or stuff like that,... I thought about...
  20. delaying a vbscript variable in javascript

    Hi all,

    I've made a script for an intraweb, where I use VBScript aswel. (It's IE only)
    I need that VBScript to get some data from excel files... but then again, this data is passed to a...
  21. Replies
    15
    Views
    1,725

    Re: [beginner question] excel find method

    Awesome ! Works great :)

    I'm still beginning reading a book about it, but can't wait starting programming yet :p
  22. Replies
    15
    Views
    1,725

    Re: [beginner question] excel find method

    Should be something like that, yes.
    Got some updated code I found somewhere else on the net, modified it to what I needed:

    Option Explicit

    Main()

    Sub Main()
    Const xlFormulas =...
  23. Replies
    15
    Views
    1,725

    Re: [beginner question] excel find method

    I knew that already, that's why I made up this thread, to get an answer How To...
  24. Replies
    15
    Views
    1,725

    Re: [beginner question] excel find method

    That's just the whole point.
    If I record that macro and look at the code afterwards, the only thing I see is this:


    Sub Test()
    Cells.Find(What:="theName", After:=ActiveCell,...
  25. Replies
    15
    Views
    1,725

    Re: [beginner question] excel find method

    It's that Find method I'm looking for, but don't exactly know how to.

    I'm not looking for a macro, because I'm requesting it via a VBScript in an html file. With my VBScript I already have, I...
  26. Replies
    15
    Views
    1,725

    [beginner question] excel find method

    Hi,
    I have an excel table with person names in the first column, and other values in the next columns (e.g. postal codes etc)
    I'm looking for a VBscript that looks into an excel file on a specific...
  27. Re: Simple question about Vb Script compatibility...

    I've seen the following in the Release Notes of IE9, regarding VBScript:

    "HTCs / VBScript
    HTML Components (HTC) and VBScript code when used inside of an IE9 standards mode page are no longer...
Results 1 to 27 of 29



Click Here to Expand Forum to Full Width