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

Search:

Type: Posts; User: umararif

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    685

    Sythetic Lights

    i wanna remove errors from attached project, plz help
  2. Replies
    3
    Views
    981

    Re: Excel Handling before mssql import

    Thnaks Shuja,
    i am using MSSQL2005 but i want this in VB6. Following is the method i am using for excel handling.

    Public Function Proc_G3U_Prefix(FileName As String)

    Dim oXLApp As...
  3. Replies
    3
    Views
    981

    Excel Handling before mssql import

    hi all,
    I am again strucked in my project, i have an excel sheet in following format.

    Destination |Codes
    Pakistan |92,9242,9251,9221
    Pakistan-Mobile |92300,92321,92345

    I...
  4. Replies
    0
    Views
    3,523

    SIP VOIP Phone

    is any one who worked on SIP or VOIP softphone project?
  5. Replies
    0
    Views
    818

    DOS commands result in real time

    Hi Guru's

    i have strucked while developing my project and need your help.

    I want to show the real time processing result of any DOS command. Forexample if I run copy command over 200 files ...
  6. Replies
    6
    Views
    1,139

    Re: Extract parameter from string

    what about following:

    [CODE]
    text1.text = "chapter-1/rukoo-1/verse-1"
    chlen = InStr(Text1.Text, "/rukoo") - (InStr(Text1.Text, "chapter-") + 8)
    rklen = InStr(Text1.Text, "/verse") -...
  7. Replies
    6
    Views
    1,139

    Extract parameter from string

    Hi,



    I have a string in a text box (text1.text = “chapter-12/heading-321/verse-41”).

    I want to extract the values of chapter, heading and verse as 12,321 and 41 respectively.
  8. Replies
    4
    Views
    906

    Re: Heavy sql without helding application

    Dear Mr Shiekh,

    kindly explain, if any example. plz.
  9. Replies
    4
    Views
    906

    Heavy sql without helding application

    Hi All,

    Once again i am in a problem. Is there any method to execute heavy sql queries without helding the application. I explain:

    Frontend = VB6
    Backend = MS SQL Server2000
    I have lot of sql...
  10. Replies
    7
    Views
    2,496

    Re: Bulk Insert problem

    not wroking with combination of \r \n
  11. Replies
    7
    Views
    2,496

    Re: Bulk Insert problem

    Dear Krzemo,

    I have installed MSSQL Server 2000 with SP4, but still I am receving following error.

    Server: Msg 4866, Level 17, State 66, Line 1
    Bulk Insert fails. Column is too long in the...
  12. Replies
    7
    Views
    2,496

    Re: Bulk Insert problem

    Can't use "\n\n" because row terminator = "\n" only. also I am confirm (and you will too if you see the attached image) that last row contains extra \n.

    If it is not possible in SQL, kindly give...
  13. Replies
    1
    Views
    894

    Bulk Insert Problem

    Hi DB Gurus,

    I am using SQL server 2000 and VB6 for my project. In its one module I have to import a raw data from a text file having row terminator = \n and field terminator = TAB. I am using...
  14. Replies
    7
    Views
    2,496

    Bulk Insert problem

    Hi DB Gurus,

    I am using SQL server 2000 and VB6 for my project. In its one module I have to import a raw data from a text file having row terminator = \n and field terminator = TAB. I am using...
  15. Replies
    12
    Views
    1,744

    Re: need help urgently... =)

    Create a module with folowing code:


    Function FileText(ByVal filename As String) As String
    Dim handle As Integer

    If Len(Dir$(filename)) = 0 Then
    Err.Raise 53 ' File not...
  16. Sending information from nokia 6600 to com port

    Is this possible to send any information /command from mobile to pc using vb and blutooth port. i can connect to my nokia 6600 through a blutooth port and can send at commands to mobile using vb...
  17. Replies
    4
    Views
    1,206

    Re: No. of row effected in Update/Insert Query

    working, u r gr8
    can we do the same for select quries.
  18. Replies
    3
    Views
    903

    Re: Text Box Control

    left(text1.text,1) 'Show "T"
    right(text1.text,len(text1.text)-1) ' Show text without first "T"
  19. Replies
    4
    Views
    1,206

    No. of row effected in Update/Insert Query

    Hi again,

    Dear all, I am again in trouble with my project of billing solution.
    In my project I have used some update and insert queries which modifies the raw data to calculate some billing...
  20. Replies
    8
    Views
    1,320

    Re: Using Excel as database

    round(333.6333,0)
  21. Replies
    3
    Views
    838

    Re: Client/Server Changing Password feature

    You can use instr() and instrrev(), check attached project.

    Umar
  22. Replies
    11
    Views
    1,203

    Re: i give this program for programmers

    check this, credit goes to zeem
  23. Replies
    10
    Views
    4,864

    Re: How to Use Theme in VB 6 Project

    check the control on http://icxr.com/acmenuex.html

    Umar
  24. Re: I´ve migrated to sqlserver from access 2000

    I have a easiest solution:
    If your crystal report is working fine independently (as you said), add these designed report again in your project.
    Right click on Project window goto Add>Crystal Report...
  25. Replies
    3
    Views
    838

    Re: Client/Server Changing Password feature

    Concatenate your 3 text into 1 with any seperator (e.g ',-.) and do the reverse at the server side.

    Example:
    text3.text = oldpwd.text+","newpwd.text","newpwd2.text"
    send text3.text to server and...
Results 1 to 25 of 67
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured