Search results for query: *

  1. A

    Simple console programme Help with VB.Net

    Now its works........ Imports System.Console Public Class Marks1 Shared Sub Main() Dim Result As Decimal WriteLine(" *~*Did you pass your course?*~*") WriteLine("*This prgramme will work it out for you*") WriteLine(" ") WriteLine("Please enter your final score: ") Result = ReadLine() If...
  2. A

    xml to dataset to database

    plz explain ur question... Hi mowafy, can u plz explain your program requirement and also the error you face when compile this code. and you have not mention about XML file structure,, is this file created by 'ds.WriteXml(My.Application.Info.DirectoryPath & "\items.xml"...
  3. A

    How can i capture sound from microphone?

    i need VB.NET or C# code, and its MFC Thx Visvis781 but its MFC, and i need VB.NET or C# code.
  4. A

    How can i capture sound from microphone?

    Hi, can anybody tell me how can i capture sound from microphone, Actually i wanna develop a voice chat messenger for LAN. that's why i wanna capture the sound from microphone and transfer it to other PC on LAN. Thank You (in Advance) Muhammad Akhtar Shiekh:confused:
  5. A

    Could not access CDO.Message object..

    Hi, I m facing a problem in my Small Mail sending Application, When i try to send a email the following exception throw "Could Not Acceess CDO.Message Object" waiting ur replys Thanx in Advance Muhammad Akhtar Shiekh
  6. A

    How to change particular cell's text color in ASP.NET DataGrid

    hi, i want to change the color of particular cell's text in a datagrid, while datagrid is bind with dataset.can any body tell me how can i do this.thanx i advance Muhammad AKhtar Shiekh
  7. A

    Please answer my questions...

    i have posted following two questions many days ago...but there is no response from any member.... I really wanna know the answer of following questions...Please answer me http://www.vbdotnetforums.com/showthread.php?t=5298 http://www.vbdotnetforums.com/showthread.php?t=5335 Thanx in advance
  8. A

    How to use MemberwiseClone() Method with SQLDataReader

    hi, I wanna use MemberwiseClone() method with SQLDataReader object...can anybody guide me how can i do this.......because MemberwiseClone() method is protected method of Object class and i can't access SQLDataReader object's MemberWiseClone() Method in my class.. if it is not possible then...
  9. A

    .NET Remoting problem

    You hav two choices 1: Use windows service (as u say) OR 2: Create a thread.....that register chanell and other formatlities....and then use while(true){} Your program will always listen client request......and whenever u wanna stope the thread call thread.Abort() method from main class...
  10. A

    What is the difference between 'Add a reference of assembly' and 'import a namespace'

    hi, Can anybody guide me that what is the difference between 'Add a reference of assembly' and 'importing a namespace ' in our vb.NEt project. i m really confuise about that. for example what will be the difference if i add reference of 'System.Runtime.Remoting' in my project OR 'using...
  11. A

    why include class assembly reference in remoting client application?

    hi i m developing a simple .NET remoting application i create 1: A class which object will be access remotly via client 2:Server application 3:Client application I include class assembly reference in both server and client application....and my application is working fine and client is...
  12. A

    How to find WebRequest response time?

    thanx for your response gripusa yes gripusa, i think you are right.. anyway thanx for your response
  13. A

    How to resolve DNS?

    i want to user custom DNS server Dns.Resolve() function use windows default DNS server , but i want to use other DNS server. Actually i m developing a simple DNS monitoring application......in which user specify a particulat DNS server address and the website address .....and then my...
  14. A

    How to find WebRequest response time?

    i just want to know the response time of the page that is requested by following code WebRequest wr=WebRequest.create(http://www.anywebsite.com); WebResponse resp=wr.GetResponse(); ........ Now i want to know the totoal response time of the webrequest....
  15. A

    How to resolve DNS?

    Hi, I wanna resolve DNS using custom DNS Server. When i try to resolve any DNS using 'Dns.Resolve()' function, it use Default DNS provided by Network Connection. can anybody guide me that how can i resolve DSN to IP address by custom DNS Server.
  16. A

    How to find WebRequest response time?

    Can anybody tell me how can i find 'WebRequest' Response time.. for example if i create a WebRequest of 'www.hotmail.com' ...i wanna know that how much time it take to complete the request
  17. A

    Is there a way to include help text to a button?

    blumonde you can use following code to solve your problem Dim ButtonToolTip as new ToolTip ButtonToolTip.setToolTip(Me.Button1,"This is button Tool Tip")
  18. A

    Writing to Access

    you can declare strSQL variable as datatype string, same like other string variables declareation e.g dim strSQL as string ... and you can declare in anyware in your program..but it will be better if you declare it in Sub, where you are executing executeNonQuery() function
  19. A

    My prog taking 35 MB memory in RAM

    hi. i m developing a small level POS software which consist of 30 forms and 15 reports... but when i run it, it take 35 MB (equal to Visual studio .NET) memory in RAM... My actual RAM siza is 128 MB .... thats why when i run my application my computer speed become very slow... i m not using any...
Back
Top