User Profile

Collapse

Profile Sidebar

Collapse
Swan
Swan
Last Activity: Aug 29 '08, 07:17 AM
Joined: Mar 14 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Swan
    replied to Can I fit my own dialog box in to frame?
    Actually I want to build inbuilt Browse control which can browse My Network Places.inbuilt means it should not open separate dialog box.Just something like FileListBox in VB.Now my problem is that,I am not getting any thing like this,but I wrote code to browse in separate dialogbox.I am posting it as bellow.So I want to put the dialogbox on form may be in frame or picturebox.So that it should look like FileListBox.Tha nking you!

    In...
    See more | Go to post

    Leave a comment:


  • Swan
    replied to How to browse My Network Places in vb
    Hi,Thanks 4 reply but it can'nt work.Becoz I want to browse My Network Places,but I need inbuilt control i.e no separate dialogbox.Commo n file dialog opens separate dialog box.I want something like FileListBox(not this,it does not allow 2 browse My Network Places)....
    See more | Go to post

    Leave a comment:


  • Swan
    started a topic Can I fit my own dialog box in to frame?

    Can I fit my own dialog box in to frame?

    Any one plz tell me Can I fit my own dialog box in to frame or picture box of another VB form?or any other feasible way?Thanking you!
    See more | Go to post

  • Swan
    replied to How to browse My Network Places in vb
    How to browse My Network Places in vb

    I'm using DriveListBox to allow the user to find and display the location of a file. I need to be able to allow them to select file from My Network Places in addition to the local drives on the machine.But DriveListBox allows to select only local files.Is there a way to do this?I want inbuilt browse control.I got code to browse,but I don't want to use Shell.If
    not, any suggestions for which...
    See more | Go to post
    Last edited by Swan; Aug 21 '08, 09:00 AM. Reason: Explained in detail

    Leave a comment:


  • Swan
    started a topic How to browse My Network Places in vb

    How to browse My Network Places in vb

    I'm using the native DriveListBox and DirListBox to allow the user to find
    and display the location of a file. I need to be able to allow them to select
    My Network Places in addition to the local drives on the machine. Is there
    a way to do this with the native DriveListBox or DirListBox controls? If
    not, any suggestions for which ActiveX control(s) to use to accomplish
    this??
    Thanking you!
    See more | Go to post

  • Swan
    replied to How to convert .doc file into .pdf in ASP
    Can u suggest any site to download s/w.I want ocx,not exe so that I can use it in my app.I searched on google,but I am getting the same result(separate app)....
    See more | Go to post

    Leave a comment:


  • Swan
    started a topic How to convert .doc file into .pdf in ASP

    How to convert .doc file into .pdf in ASP

    How can I convert .doc file into .pdf in ASP.I have Doc file on serverside I have to convert it on an event.
    See more | Go to post

  • Swan
    started a topic how to write trigger in sql server 2005

    how to write trigger in sql server 2005

    Plz tell me how to write trigger in sql server 2005.Is there any special syntax for it?It's different from sql server 2000.Thanking you!
    See more | Go to post

  • Swan
    replied to Is that vb.net is web app?
    in .NET
    Ok.Then what is diff betn VB n VB.NET,except diff in coding?...
    See more | Go to post

    Leave a comment:


  • Swan
    started a topic Is that vb.net is web app?
    in .NET

    Is that vb.net is web app?

    Hi,I am new to .net.Plz tell me is that vb.net is web app or it is deskto app.How vb.net code runs?
    See more | Go to post

  • restrict alt+tab and start menu from keyboard while program executing

    How can I restrict alt+tab and start menu from keyboard while program executing(VB)?I am posting what I tried--

    form.frm

    Option Explicit
    Private Sub Form_Load()
    HookKeyboard
    End Sub
    Private Sub Form_Unload(Can cel As Integer)
    UnhookKeyboard
    End Sub


    module1.bas

    Option Explicit

    Public Declare Function UnhookWindowsHo okEx...
    See more | Go to post

  • Swan
    started a topic How to show Upload progress?

    How to show Upload progress?

    Can anyone plz tell me,I have OCX created Http upload control.In that I am sending chunk wise data.Everything is working fine.My question is-how can I show Upload progress or Uploading cancelled,using raiseEvent method.
    I am sending my code whatever I tried-

    (When I run the code file uploaded successfully,bu t I can not see the progess,how much bytes are uploaded)
    [code=vb]
    Public Enum TransferProcess es
    ...
    See more | Go to post
    Last edited by Dököll; May 11 '08, 05:31 AM. Reason: [code=vb]

  • What is the limitation for HttpSendRequest to upload file?

    Can anyone plz tell me what is the limitation(size ) of HttpSendRequest api to upload the file? I mean how big file it can upload? Thank you!
    See more | Go to post

  • Swan
    started a topic How to convert Binary data to original text?

    How to convert Binary data to original text?

    I am sending binary data from ASP to dll in VB.I am able to receive the data,but it is in binary format.can anybody plz tell me how to convert binary data to original text in VB.(I am saving data in variable,n receiving on Dll.)
    See more | Go to post

  • Swan
    replied to How to write binary data
    I am posting my code for reference:
    Code:
       
    dim myStream,vntPostedData
    vntPostedData = Request.BinaryRead(Request.TotalBytes)
     
    	Set myStream = CreateObject("ADODB.Stream")
    	myStream.Open
    	myStream.Type = 1 ' binary
    	myStream.Write(vntPostedData)		
    	myStream.SaveToFile("C:\testdata.txt")		 
    	myStream.Close
    ...
    See more | Go to post
    Last edited by DrBunchman; Apr 22 '08, 12:10 PM. Reason: Added code tags - note the # button

    Leave a comment:


  • Swan
    started a topic ,can I send binary data from ASP to VB

    ,can I send binary data from ASP to VB

    Any one plz tell me ,can I send binary data from ASP to VB without writting to local hard drive.
    See more | Go to post

  • Swan
    replied to How to write binary data
    Thanks for replying.I tried ADODB.Stream n it worked.There is no need to convert in ASCII code....
    See more | Go to post

    Leave a comment:


  • Swan
    started a topic How to write binary data

    How to write binary data

    Hi,I am sending binary data from VB to ASP through HttpSendRequest API.I am getting size of file on ASP(using Request.TotalBy tes),which I am sending.Now I want to write it on specific path on server.I tried BinaryRead n BinaryWrite method in ASP,but unable to write.Should I use Binary access method,or anything else?plz suggest me.

    I am posting what I have done:
    Code:
     Dim BinRead 
    	Dim BinWrite
    	BinRead=Request.BinaryRead(Request.TotalBytes)
    ...
    See more | Go to post
    Last edited by DrBunchman; Apr 11 '08, 01:34 PM. Reason: Added code tags - note the # button

  • How to accept request coming from VB page on server side

    Can anyone plz tell me,how to accept request on server side,coming from HttpSendRequest () API(For Http Upload Control in VB).I am posting my code:
    I think I need Server side component(may be in ASP),but how to implement it?
    Public Function UploadFileHTTP( ByVal localFileName As String, ByVal remoteFileName As String) As Integer
    Dim nRet As Integer
    Dim bRet, bQueryInfo As Boolean
    Dim iRet As Integer...
    See more | Go to post

  • Swan
    started a topic Why function returns 0?

    Why function returns 0?

    I am creating OCX for Http Upload control.can anyone plz tell me why the function UploadFileHTTP returns 0 when used?I am posting my code----
    [CODE=vb]
    Public Function UploadFileHTTP( ByVal localFileName As String, ByVal remoteFileName As String) As Integer
    Dim nRet As Integer
    Dim bRet, bQueryInfo As Boolean
    Dim iRet As Integer
    Dim nFileHandle, i As Integer
    Dim bData(BUFFER_SI ZE...
    See more | Go to post
    Last edited by debasisdas; Apr 3 '08, 12:50 PM. Reason: added code=vb tags
No activity results to display
Show More
Working...