Search:

Type: Posts; User: cssriraman

Page 1 of 13 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    7
    Views
    1,728

    Re: Adding And Subtracting From Textbox

    try yourself. then only you will learn. It is similiar to #2 :rolleyes:
  2. Re: [2005] Form closing problem when saving.

    Simple way i think is, Adding a label before select case and using goto statement in else part (of savefile dialog If condition). Try it and let us know.
  3. Replies
    3
    Views
    561

    Re: How do I generate a PDF

    One of the way I use is creating pdf using Adobe acrobat printer. If you have that, then you can automate it to create pdf.
  4. Re: Printing Pdf's - Multiple Instances of Adobe

    From my experience, it is better to terminate Adobe acrobat before sending each and every job to printer. The memory used by Acrobat will increase continuously after sending number of jobs.

    Just...
  5. Replies
    2
    Views
    465

    Re: Read between two strings

    Option Explicit

    Sub Main()
    Debug.Print ParseStringBetweenTwoCharacters("<title>This is a Test phrase <Find> for this example.</title> ddf", "<title>", "</title>")
    End Sub

    Private...
  6. Replies
    15
    Views
    1,555

    Re: Shell properties

    I am not sure what you are asking here.

    Are you talking about commandline arguments?

    The part which are in bold formatting in the example below:


    Shell("rundll32.exe shell32.dll,...
  7. Replies
    18
    Views
    589

    What's your drive to work?

    So... how long does it take you to get to work?

    I'm about 12 miles away, takes ~20 min from the time I leave my house till I'm at my desk @ work.
  8. Replies
    72
    Views
    2,166

    Re: What Are You Passionate About?

    My girlfriend.
  9. Replies
    2
    Views
    486

    Re: Option button

    Select the Option1. Press F4. And Set its value property to False
  10. Replies
    9
    Views
    767

    Re: "Negative" Probelm...

    Don't allow the user to enter negative numbers. Check the number before you calculate whether it is negative, if negative notify the user saying "Negative number is not allowed. Enter the positive...
  11. What is the funniest comedy movie you've watched?

    It has to be Soul Plane, if you have watched you'll surley agree with me, the movie is just hilarious.

    Second has to be forgot the name but it was a movie with martin lawrence him pretending to be...
  12. Replies
    5
    Views
    656

    Re: txtbox to txtbox

    Not sure what you are looking for. To assign a value of Text2 to Text1
    Text1.Text = Text2.Text
  13. Replies
    6
    Views
    561

    Re: Two VB applications sharing info

    Do you want to pass the text only once from one application to another or more than once?

    You will be opening the second application whenever you pass the text to that application or what?
  14. Replies
    5
    Views
    683

    Re: Form Unload

    If the form is already unloaded and if you try to unload it, the form will load again and unload.
  15. Replies
    6
    Views
    990

    Re: PlaySound API

    Option Explicit

    'This code uses the Playsound API function. Playsound can read files from standard WAV files on
    'disk, by reference from the system registry, or from a resource file. For the...
  16. Replies
    2
    Views
    575

    Re: FileSystemObject + Permission Denied

    If you do not have permission to view/access the file you will get that error. check permission setting of that file/folder.

    Can you access that file without using your code/application?
  17. Replies
    3
    Views
    741

    Re: rename file by date

    there are few ways:

    1. You can create a schedule task to run an application @12:00 which will take backup of your log file. or

    2. you can create an application which will always run on your...
  18. Replies
    7
    Views
    803

    Re: how to know .doc files created date?

    Option Explicit

    Private Type FileTime
    dwLowDateTime As Long
    dwHighDateTime As Long
    End Type
    Private Type SYSTEMTIME
    wYear As Integer
    wMonth As Integer
    wDayOfWeek As...
  19. Replies
    5
    Views
    754

    Re: List WIndows XP Users

    This may help.Option Explicit

    Sub Main()
    Dim thisComputer As String
    Dim oWMIService As Object, oItem As Object, cItems As Object

    thisComputer = "."
    Set oWMIService =...
  20. Re: Another Easy proble to solve i think: Searching and selecting text backwards?

    From your past few threads I think you are trying to automate Google Services which you should not do. Read http://www.google.com/intl/en/terms_of_service.html
  21. Re: Another Easy proble to solve i think: Searching and selecting text backwards?

    You can use the same function which I posted on your previous thread. You just need to change the arguments as mentioned below:
    'Add a RichText box and two text boxes to your form

    Sub Main()
    ...
  22. Replies
    2
    Views
    1,384

    Re: VB6 RichTextBox

    Welcome to VB Forums

    Option Explicit

    Public Const EM_LINEINDEX = &HBB
    Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, _
    ByVal wMsg As Long,...
  23. Re: [RESOLVED] easy problem to solve: selecting sepecific text in a string

    Option Explicit

    'Add a RichText box and two text boxes to your form

    Sub Main()
    Debug.Print GetTextBetweenTwoStrings(RichTextBox1.Text, Text1.Text, Text2.Text)
    'Debug.Print...
  24. Re: How to click a button on a program that not made by me?

    you need to use Findwindow, FindWindowEx API.


    Search the forum. there are so many examples
  25. Re: string validation for email address

    Option Explicit

    'Add one Text box (Text1) and a command box (Command1).
    'Enter valid email id on text1 and click on command1.
    'Capital letters are considered as invalid

    'Use the...
  26. Replies
    6
    Views
    805

    Re: Empty first row in ListBox

    can you check the value of SavedNotes(0)?

    since the similiar code works fine for me.
  27. Replies
    8
    Views
    788

    Re: Parsing question

    Option Explicit

    'Add a RichText box to your Form

    Private Sub Command1_Click()
    Dim sText As String
    Dim sFind1 As String, sFind2 As String
    Dim iPos1 As Integer, iPos2 As...
  28. Replies
    8
    Views
    788

    Re: Parsing question

    Yes. the code I posted above has some bugs. Here is the corrected version

    Dim sText As String
    Dim sFind1 As String, sFind2 As String
    Dim iPos1 As Integer, iPos2 As Integer

    sText = "<input...
  29. Replies
    8
    Views
    788

    Re: Parsing question

    If your problem is solved please resolve the thread using Thread tools -> Mark Thread Resolved
  30. Replies
    8
    Views
    788

    Re: Parsing question

    Here you go

    Dim sText As String, sFind As String
    Dim iPos1 As Integer, iPos2 As Integer
    sText = "<input name=""ctl00$ctl00$Main$ProfileEditContent$editInterests$HeadlineText""...
  31. Re: [RESOLVED] find my documents directory from vb

    And, one more thing is, the user can change the My Documents folder name. you should not hard code it as "mydocu~1". The user may have the name of my documents folder as "Docs" or something like...
  32. Re: [RESOLVED] find my documents directory from vb

    It is pointing to wrong folder. In my system, My Documents folder located in E:\
    Windows is installed on C:\

    It will work fine if the user hasn't moved the My Documents folder.

    I suggest the...
  33. Re: [RESOLVED] find my documents directory from vb

    @rnd me:

    Yours is nice suggestion. But, it may not work on all computers. For example, at my home computer I moved the My Documents folder to D:\ and the windows is installed on C:\.

    So my...
  34. Replies
    11
    Views
    465

    Whom will you prefer?

    A BIG BRAND name company with no exciting job, or a small company with great exciting jobs?
  35. Replies
    66
    Views
    1,758

    Who needs Vista??

    So I gave Vista Ultimate a spin for a week (Dell sent me an "express upgrade") and loved the way it looked but hated how sluggish things were.

    Vista was a huge memory hog and used 80% of my...
  36. Replies
    3
    Views
    622

    Re: Date Formatting

    This will do:
    MsgBox Format$(now,"DD MMM YYYY hh:mm AMPM") & " CDT"
  37. Re: Parsing a string until a specific character is found

    Here you go ....

    Public Sub Test()
    Dim sText As String
    sText = "12..This is a string"
    MsgBox Left$(sText, InStr(sText, ".") - 1)
    End Sub
  38. Re: [RESOLVED - Again] Programmatically Enter Text In Masked Edit Text Box

    why you are using mask edit contrl too, as you are using DTpicker already?
  39. Re: HOW Hide Win Explorer dialog box ?

    @jikopa: try reducing the timer interval and will work fine. I tested at my end I cannot see any copy file animation after reducing the timer interval.
  40. Re: HOW Hide Win Explorer dialog box ?

    @Joacim Andersson: He is not coping through code. He just want to hide the copy file animation if he copy paste manually. His program will run in background and will hide the copy file animation.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width