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

Search:

Type: Posts; User: rahul.kul

Page 1 of 10 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    40
    Views
    94,481

    Re: sending e-mail through VB application

    Here is a Simple way to do this, No Outlook required, No win-socket Required.

    Just add this Library to your project and use this function for send emails from VB applications.

    Microsoft CDO for...
  2. Replies
    3
    Views
    2,936

    Re: Dim xlApp As Excel.Application NOT WORKING

    What was the Error? describe it and then tell what u written down into ur code!
  3. Replies
    2
    Views
    646

    Re: Alt+Tab display icon App icon?

    That's right !! When we use ALT+TAB, we can switch only between the opened Application, and the Icon of the concerned application displayed in the ALT+TAB Display, so it is not possible to show the...
  4. Replies
    2
    Views
    549

    Re: Icon How to Question

    First of all Welcome to Codeguru !

    and thanks to god, you solved ur problem on ur own....gud !

    BYe!
  5. Replies
    4
    Views
    648

    Re: Replace Characters

    Hi Nanuk, Welcome to Codeguru !

    I Hope the following example will help to you at all,



    Private Sub Command1_Click()
    Dim variable1 As String
    Open App.Path & "\sample.txt" For Input As #1
  6. Replies
    5
    Views
    1,259

    Re: Error on Select using ADO

    it will be a Textual value , as the ' prefixed and postfixed to it in the query !
  7. Re: [b]Disable some entries in Combo box[/b]

    Dear nthaby,

    here i have make some changes in the code given by hensa22, so that the user can't access the disabled selection and index reset to the previous valid seletion, so that c.text...
  8. Re: execute batch files in the "Run" command line in a VB code

    Hi Camelia, I just wanna to know that do u want to run your command from "Run Dialog box" or from VB Shell command?

    Please clear it..!

    BTW...Hi again!
  9. Replies
    5
    Views
    1,259

    Re: Error on Select using ADO

    Dear friend pepsisc,

    use your query in the following format, and it will works..100%!


    Dim MyConn As ADODB.Connection
    Dim MyRecSet As ADODB.Recordset
    Set MyConn = New ADODB.Connection...
  10. Replies
    2
    Views
    1,018

    Re: auto populate textfield items to datagrid

    tell me some more abt your prob dear !
  11. Replies
    5
    Views
    1,865

    Re: Validation of entries in textbox

    Hi

    try out this and definately you will thanks me for this ;;



    Private Sub Text1_KeyPress(KeyAscii As Integer)
    If KeyAscii >= 48 And KeyAscii <= 57 Then
    Else
    If KeyAscii = 45 And...
  12. Replies
    10
    Views
    1,327

    Re: Making a scroll screen

    I Agreed with Dan_H Also..

    The Method is also a Beautiful way to scroll. !
  13. Replies
    16
    Views
    2,668

    Re: reading text file

    Thanks Shuja !!!

    It's Working.. Keep it up !
  14. Replies
    16
    Views
    2,668

    Re: reading text file

    Hi Shuja..

    Okay.. I agree. with you.. but why givinh it an Erro when I try for it..?


    MsgBox Split("Rahul#Kul", "#")
  15. Replies
    16
    Views
    2,668

    Re: reading text file

    If your have string like this.. (for Example)

    Mystr = 4140483656^232#12/10/2005@Credit

    Here ^, #, @ are the Sepreators.. and then I can use Mid and Instr functions to get the Strings...!...
  16. Replies
    16
    Views
    2,668

    Re: reading text file

    HI Toracle..

    You can use the Following code to open a Text File and load all the Text from it by Line-By Line..



    Dim iFile as integer
    iFile = FreeFile
    Open strFilename For Input...
  17. Replies
    6
    Views
    1,090

    Re: Auto display Text...Urgent one

    I agreed with Manju !!
  18. Replies
    7
    Views
    1,034

    Re: Strange problem with Dates in Access

    Dear all...

    It is a tiny bug in MS-Access, that whenever dates are less than 13 (= to 12) it confused between dates and Month.. so we have to use "MMM" and applied Format fucntion to display the...
  19. Replies
    10
    Views
    1,327

    Re: Making a scroll screen

    Hi Limpit,



    Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    If X < Frame1.Left Then
    Frame1.Left = X
    End If

    If X >...
  20. Thread: ocx problems

    by rahul.kul
    Replies
    8
    Views
    3,417

    Re: ocx problems

    You have to re-install you VB and then re-again do the all the copy procedure of your DLL ... it will be works again..

    Regards!
  21. Replies
    7
    Views
    1,034

    Re: Strange problem with Dates in Access

    Hi

    try this and tell me...!



    dtPurchase = lstPurchaseDate.List(lCounter)
    dtWarranty = CDate(DateAdd("yyyy", 3, dtPurchase))
    sUpdateSQL = "Update tblDate Set WarrantyExpirationDate = #"...
  22. Thread: vb and sql

    by rahul.kul
    Replies
    7
    Views
    1,080

    Re: vb and sql

    I Agree with your Hannes..!

    Like this ;

    "Select count(at_Yes) as CntOfYes from YOUR_TABLE_NAME"

    then use CntOfyes field to retrieve the Count Value for Yes type of Records... and same for...
  23. Replies
    5
    Views
    921

    Re: My Key-Strokes make noise?

    What Operating System are u Using?
  24. Replies
    3
    Views
    982

    Re: txtbox.Text = """

    agreed

    txtbox.Text = chr(34) is the right way to doing all this.
  25. Replies
    6
    Views
    1,090

    Re: Auto display Text...Urgent one

    HI Raj.. !

    I have done this type of code in my software already...see like this..

    For doing this.. you have to fill first combo sorted on a autonumber field with the Item code. and then another...
Results 1 to 25 of 244
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured