Search:

Type: Posts; User: ladoo

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    11
    Views
    30

    Re: monster list codes 2

    Searching PATH for Specific Files

    The MS-DOS® PATH statement tells the operating system to look for files in specific directories on your disk. This article explains how to find out whether a...
  2. Replies
    11
    Views
    30

    Re: monster list codes 2

    Detects if a file exists.

    'Function FileExists (filename As String) As Integer
    On Error Resume Next
    x% = Len(Dir$(filename))
    If Err Or x% = 0 Then FileExists = False Else FileExists =...
  3. Replies
    11
    Views
    30

    Re: monster list codes 2

    Determining Whether a File Exists

    This article explains how to determine whether a file exists on a disk drive in a Microsoft® Visual Basic® application.

    Using the OpenFile Function
    You can...
  4. Replies
    11
    Views
    30

    Re: monster list codes 2

    Creating Temporary Files


    When developing an application in Visual Basic®, you may need to create a temporary file on disk. This article explains how to use the Windows® application programming...
  5. Replies
    11
    Views
    30

    Re: monster list codes 2

    All File Operations. , delete,move,copy & more


    Option Explicit
    Private Declare Function ShellExecute Lib "shell32.dll" Alias _
    "ShellExecuteA" (ByVal hwnd As Long, ByVal lpszOp As...
  6. Replies
    11
    Views
    30

    Re: monster list codes 2

    Finding Whole Words in a Text Box Control

    In the example program below, you use a FindMatch function to search the Text Box control for a specific word. A message box is displayed telling you...
  7. Replies
    11
    Views
    30

    Re: monster list codes 2

    awsome

    Capitalizing the first letter of each word
    add multi line text1


    Private Sub Command1_Click()
    cr$ = Chr$(13) + Chr$(10)
    t$ = Text1.Text 'the string
    If t$ <> "" Then
  8. Replies
    11
    Views
    30

    Re: monster list codes 2

    Sending a Click Event to a Command Button Control



    In a Microsoft® Visual Basic® application, you can simulate a Click event to a Command Button control. This article explains how to send a...
  9. Replies
    0
    Views
    8

    enable code tags for quick reply

    need code tags for quick reply typing it in manually all time sucks no offence


    aaaaaaaaa need tis on quick reply
  10. Replies
    11
    Views
    30

    Re: monster list codes 2

    Streaming to a Windows Media Server

    This example shows how to set up a multicast push broadcast to a Windows Media server. It is assumed that you have set up the Windows Media server; for more...
  11. Replies
    11
    Views
    30

    Re: monster list codes 2

    Retrieving Statistics from an Encoding Session

    The two examples in this section show how to retrieve statistics while encoding. The first example shows how to retrieve statistics when encoding an...
  12. Replies
    11
    Views
    30

    Re: monster list codes 2

    Creating a Multiple Bit Rate Profile


    This example shows how to:

    Create a multiple bit rate (MBR) profile with three audiences.
    Change the settings that are applied by default.
    Validate...
  13. Replies
    11
    Views
    30

    monster list codes 2

    Capturing audio Events


    Dim WithEvents Encoder As WMEncoder

    Private Sub Encoder_OnStateChange(ByVal enumState As WMEncoderLib.WMENC_ENCODER_STATE)
    ' Wait until the encoding process stops...
  14. Allowing a Visual Basic Application to Accept Drag-and-Drop Files

    Tip 86: Allowing a Visual Basic Application to Accept Drag-and-Drop Files
    May 15, 1995

    Abstract
    Many Windows®-based applications can accept, or process, a file that has been dragged from File...
  15. Replies
    7
    Views
    118

    Re: listbox click

    thanks allot bonnie working em :) hugz:blush:
  16. Replies
    7
    Views
    118

    Re: listbox click

    its ok il figure it out
  17. Replies
    7
    Views
    118

    Re: listbox click

    i tried



    Dim J As Integer, ii As Integer
    For J = List1.ListCount - 1 To 0 Step -1
    If InStr(List1.Text, "@yahoo.com") Then
    Else
    Text2.Text = "@yahoo.com"
    List1.Selected(0)...
  18. Replies
    7
    Views
    118

    Re: listbox click

    when i single click on any item in list1 it counts as 1 click , right after i clicked it with mouse how do i get the programme to click that same item just once again
  19. Replies
    7
    Views
    118

    [RESOLVED] listbox click

    when i hover over an item in list1 and click it , its clicked once but then right after i clicked it how do i make it click auto just once on that same item ? please urgent
  20. Replies
    2
    Views
    90

    Re: [RESOLVED] search listbox

    thanks bonnie
  21. Replies
    2
    Views
    90

    [RESOLVED] search listbox

    this is what i have

    Dim i As Integer, J As Integer
    Private Sub List1_Click()
    On Error Resume Next
    For J = List1.ListCount - 1 To 0 Step -1
    If InStr(List1.Text, "@yahoo.com") Then
    ...
  22. Re: example needed urgent : trial soft , limitation use

    guys is this good
    http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=72227&lngWId=1


    'This is a basic way of adding trial days to your program
    'Use this code as you like
    'By...
  23. example needed urgent : trial soft , limitation use

    there is 2 things am after

    1: limitation the software use when programme is launched , an example will be great such as limiting command1_click to be pressed once a day then order...
  24. Replies
    2
    Views
    151

    Re: Very Cheap Text/Voice Chat Application

    james u done good but holding button it sucks man + record then send data out then it plays , can u make real time stream.

    1: real time stream

    2: when u press talk button auto hold and talk ...
  25. Replies
    0
    Views
    67

    create ocx tutorial

    step by step with image and code

    http://cuinl.tripod.com/tutorials/ocx-11.htm
  26. Replies
    4
    Views
    109

    Re: how to make ocx simple example please

    thanks ladies and gents

    ahh so simple basic understand what i seen is making ocx it acts as a form or a module am i correct

    i opened form control like u said @datamiser and i am able to...
  27. Replies
    0
    Views
    135

    2013 addons daily updates

    MZ-Tools is very easy to use. It provides a main menu, a toolbar, handy context menus and customizable shortcuts to access its features, which are detailed in the Features section.

    You can...
  28. Replies
    4
    Views
    109

    how to make ocx simple example please

    il like to know how to make ocx ,,, few examples will be great to learn from , how to make ocx files then use them please anyone
    :eek::eek::eek::eek::eek:
  29. Thread: Unload Me

    by ladoo
    Replies
    9
    Views
    186

    Re: Unload Me

    :pbump why not just finish off thread rather then discussion :pbump:p
  30. Replies
    10
    Views
    153

    Re: get all directories in all o/s

    http://www.freevbcode.com/ShowCode.asp?ID=2087
  31. Re: Extracting range of data by prompting user for values

    post like these gives me head akes
  32. Replies
    10
    Views
    153

    Re: get all directories in all o/s

    it shows browse for folder , i want to show all list like tht yeh but in listbox something
  33. Thread: Unload Me

    by ladoo
    Replies
    9
    Views
    186

    Re: Unload Me

    unload me is for closing 1 form but there is a code using for each method that will close all forms same time

    use this

    it will kill all forms instantly


    Private Sub Command2_Click()...
  34. Re: how to conviert a game made by vb6 into flash

    yes i know cs2 is better then others because new ones are cra?
    bump:p
  35. Replies
    10
    Views
    153

    Re: get all directories in all o/s

    whole operating system , shared folder / my documents / pictures / music / windows / and system32
    i need to first list all directory , second task copy files to were ever i want
  36. Replies
    3
    Views
    116

    Re: [RESOLVED] How to view my reputation??

    :pme to bump:p
  37. Re: how to refresh the listview with another form

    :pbump:p i bet this simple thread will go past 30 post bump:p
  38. Replies
    10
    Views
    153

    get all directories in all o/s

    i need help listing all diretories in
    winxp
    vista / 7/ 8

    should show all folders only thanks.

    :phow do i use if statement


    if windows xp then show directories
  39. Re: how to refresh the listview with another form

    check post 4 why are u making things hard for u ?

    start with simple code the pause code to your project and rest code try it
    then later on when u se results just remove the lables and use...
  40. Re: how to conviert a game made by vb6 into flash

    adobe photoshop cs2 , check youtube for tutorials u want to make animation
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4