Search results for query: *

  1. R

    any help or suggestion

    Hi, I had web based Document Management system.The current working of application is like. When any request for Document is come from the Client the the application search for the Requested Document in FTP which is on the m/c other that Web Server.....than it fetches Doc. form FTP Server and...
  2. R

    Adding color to the tab index pages tabs

    Hi JuggaloBrotha, after just going through this post and doing some R &D i notice that 1>tabControl it self not exposing any Paint Event.. 2> Then i captured tabpage's Paint event but i could not figured it out how to map the Header section of TabPage(i.e to find out the Rectangle area of...
  3. R

    is it possible to install win app without .net Framework?!!!!

    Hi, It's not possible as .NET Framework is the core of any .NET Application which provides base service like CLR and Base Classes w/o which ur application can not run. Reagrds, Ritesh
  4. R

    How to check if the server is available!!

    Hi, Try to open the connection if u get any exception that means ur either ur server does not exist or u don't have permission.......... e.g I hope this will help u.................. Regards, Ritesh
  5. R

    Help with Focus on ListBox

    Hi, Try to use Select Method of ListBox as below........ I hopw this will help u.................. Regards, Ritesh
  6. R

    Update requires a valid UpdateCommand

    Hi, U need to specify the UpdateCommand of Dataadapter before calling dbUsers.Update....... here is sample ........(It's using sqlDataadapter ...........) Dim da As SqlDataAdapter = New SqlDataAdapter() Dim cmd As SqlCommand ' Create the SelectCommand. ' Create the InsertCommand...
  7. R

    Calling A Method In Other Forms

    Hi, U can create new instance of FormB and u can call it's Public methods like......... 'From A Code ....................... dim objfrmB as new FormB objfrmB.Refresh() ....................... I hope this will help u.............. Regards, Ritesh
  8. R

    storing table from dataset to database table

    Hi, as u have added New row in Datatable,Use Dataadpter to update ur Database....... I assume u have "temp" table in ur DB where u want to insert data.... (While creating ur dataTable u haven't add column Qty and Price??) Dim da As SqlDataAdapter = New SqlDataAdapter() Dim cmd As...
  9. R

    How to get information from AssemblyInfo

    Hi, U can load assembly at runtime using and get it's attribute info as... asmTitle= System.Reflection.Assembly.LoadFrom("D:\BackUp.exe").GetCustomAttributes(GetType(System.Reflection.AssemblyTitleAttribute), False)(0) strTitle=asmTitle.Title.Tostring.............. I hope this will help...
  10. R

    ordering on importing dataset from EXCEL!!!

    Hi, u can read the Records from ex sheet as ........... Dim exlApp As New Excel.Application() Dim exlBook As Excel.Workbook = exlApp.Workbooks.Open(tbFileName.Text.Trim) Dim exlSheet As Excel.Worksheet = exlBook.Worksheets.Item(tbWorkBook.Text.Trim) for...
  11. R

    How to get information from AssemblyInfo

    Hi, see this link..... http://www.vbdotnetheaven.com/Code/Sept2003/2172.asp I hope this will help u........ Regards, Ritesh
  12. R

    insert <NULL>

    Hi, if you are using sqlparameter to pass the value than just use Dim sqlParameter As SqlParameter sqlParameter = New SqlParameter("@Date", DBNull.Value) Or if ur directly using query u can use......... Dim strInsert As String = "INSERT INTO...
  13. R

    How to calculate age?

    Hi, Try to use this.................. txtage.text=DateDiff(DateInterval.Year,cdate(txtdob.text.trim),Now.Date ) I hope this will help u........... Regards, Ritesh
  14. R

    SQL Problem

    Hi, Not quite sure but u might not be closing ur SQLConnection after opening it and the default pool size is for 100 connection which might have crossed. Just try to call conSQLConnection.Close after u done with ur connection object. I hope this might help u............. Regards, Ritesh
  15. R

    creating web application over internet

    Hi, Stupid guess but if ur web application is in ur local m/c's iis and if ur trying to use http://www.mydomain.com/foldername it won't work. for that u have to upload ur application to any WebHost server with urdomain name...... Regards, RItesh
  16. R

    ordering on importing dataset from EXCEL!!!

    Hi, why don't u use dtTable.DefaultView.Sort property to sort ur Datatable and work with defaultview of the Datatable. I hope this will help u............... Regards, Ritesh
  17. R

    Validating textbox in ASP.ET

    Hi, Why don't u Regular Expression validator control. just set regularexpression to \d* Regards, RItesh
  18. R

    DataTable

    Hi Alok, U can loop through each row of the datatable as.......... for intCounter = 0 to dtTable.rows.count-1 strName = dtTable.rows(intCounter).item("NameOfCol") next Regards, Ritesh
  19. R

    label forecolour

    Hi, greate it helps u.................wating for ur control....................... Regards, Ritesh
  20. R

    Capital letters in a textbox

    Great.................finally it's work out............ nothing new just forgot............"{" after if(window.event) Regards, Ritesh
Back
Top