Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ravula2000
  • Content: Threads
  • Order by date
  1. ravula2000

    AVG based on no of columns

    Hi Here is the requirement. The Cross tab has SalesGuyName as rows and each day sale as columns. Now say date range is Jan0109 to Jan3109. The Avg is defined in formula as Totalsales/days between that date range ie 30 So the problem is what happens if the salesguy does not have sale for say 10...
  2. ravula2000

    Data Filter in Crystal Reports Viewer

    Hi, I am looking for a data filter in Crystal Reports X1 viewer, want to filter the data (like data filter in excel) on the viewer itself without posting back to server and using Parameter fields. If any body has any ideas please share. Thanks Sr
  3. ravula2000

    Accessing Database internally

    Hi, I created a form in the MSAccess database and Iam accessing the database with the following code which is working fine. ================= Dim cn As ADODB.Connection Set cn = New ADODB.Connection Dim rs As ADODB.Recordset Set rs = New ADODB.Recordset cn.Open "dsn=csismdb" Set rs =...
  4. ravula2000

    Write to TextFile

    I have a table where Id and notes fields is stored. I want to take few records and want to create a text file with the name of the Id. I want to do this using MSAccess forms. Can any body please explain me who to create it. Iam good in VB but not familiar with Ms-Access. Please advise me...
  5. ravula2000

    Datagrid output to Excel opens in Browser itself.

    Response.ContentType = "application/vnd.ms-excel" Response.Charset = "" Me.EnableViewState = False Dim tw As New System.IO.StringWriter() Dim hw As New System.Web.UI.HtmlTextWriter(tw) hw.RenderBeginTag("h5") hw.Write("Case# " & lsCaseNum) hw.RenderEndTag fdgdcardslawenf.RenderControl(hw)...
  6. ravula2000

    Copy files from Server to client machine on clicking button on webpage

    Hi, I have a webapplication on a server. In this webapplication we have to provide a menu where users can select a list of files from a directory and on pressing download, the files should be automatically copy to users local machine say in c:\. Is this possible using Javascript or vb or asp...
  7. ravula2000

    Copy files from Server to client machine on clicking button on webpage

    Hi, I have a webapplication on a server. In this webapplication we have to provide a menu where users can select a list of files from a directory and on pressing download, the files should be automatically copy to users local machine say in c:\. Is this possible using Javascript or vb or asp...
  8. ravula2000

    Copy files from Server to client machine on clicking button on webpage

    I have a webapplication on a server. In this webapplication we have to provide a menu where users can select a list of files from a directory and on pressing download, the files should be automatically copy to users local machine say in c:\. Is this possible using Javascript or vb or asp etc.
  9. ravula2000

    Copy files from Server to local machine on pressing a button

    Hi, I have a webapplication on a server. In this webapplication we have to provide a menu where users can select a list of files (in a directory) on the server and on pressing download button, the files should be automatically copy to users local machine say in c:\. Is this possible using...
  10. ravula2000

    Questions on Certificate server implementation

    I have Certificate server setup on a website. I had given Portno as 80 and SSL No as 443. Iam able to access the application webappl1 in the website from Browser by giving https://webappl1/login.asp where login.asp is a page in the site. Iam getting a Security alert perfectly first time. Now...
  11. ravula2000

    Horizontal bar help

    Hi, I have two horizontal frames. 1st Frame has headings and 2nd frame has data like in a table. When I move the Horizontal scrollbar of the 2nd frame the 1stframe horizontal bar should be moved so that the headings should appear for the data. I posted and got answer 1year back in this forum...
  12. ravula2000

    WildCards in GetDirectoryInfo

    Dim dirinfo As New Directoryinfo("c:\") drp2.DataSource = dirinfo.GetFiles("*.txt *.dat") If I want to get only file with extns - *.txt and *.dat how should I specify. I tried putting "*.txt | *.dat " but no luck.. Kindly help Thanks Srini
  13. ravula2000

    Adding a column in the datagrid based on a condition

    In my datagrid I need to display the buttoncolumn based on a condition.. I can't write If condition in the grid like <columns> <%If x=10 then%> <asp:Buttoncolumn Text=&quot;Edit&quot; HeaderText=&quot;*&quot; /> <%End If%> </columns> I dont know whether it can be possible using OnItemBound...
  14. ravula2000

    Reading Cookie

    A Cookie is written by using Javascript in an ASP Page. Say the cookie is &quot;ProductType&quot; When Iam trying to read it in aspx (asp.net page) Iam not getting nothing.. If Not Request.Cookies(&quot;ProductType&quot;) Is Nothing Then pId =...
  15. ravula2000

    Sorting a datagrid

    Iam trying with this code <asp:DataGrid id=&quot;fdgdHist&quot; Runat=&quot;Server&quot; AutoGenerateColumns=&quot;False&quot; AllowSorting = &quot;True&quot; OnSortCommand = &quot;SortCommand_OnClick&quot;> <columns> <asp:BoundColumn DataField=&quot;ext_file_name&quot...
  16. ravula2000

    Adding a SerialNo column in DataGrid

    I want to add a Record No (Serial NO) column in the datagrid. I think may be I Can use Template column. But I don’t know how to use it.. Can some one explain me with the code. Thanks Srini
  17. ravula2000

    Posting to a different page

    My page has a list of filenames in a listbox. Clicking a 'Show' asp command button opens a grid with the selected file contents in the SAME PAGE. But the design should be modified. I should have 2 frames. In one frame I need the list box with Command button. Clicking the commnad button should...
  18. ravula2000

    Clear Listbox items

    Here is my code Dim mcSourceDir As String drpListFiles.Items.clear() Select Case pnImpType Case 2 mcSourceDir = &quot;c:\temp&quot; Dim dirinfo As New Directoryinfo(mcSourceDir) drpListFiles.DataSource = dirinfo.GetFiles(&quot;*.*&quot;)...
  19. ravula2000

    File upload problem

    To upload a file, Iam using a file control and button control as follows. <input id=&quot;ffileuploadedFile&quot; type=&quot;file&quot; size=&quot;50&quot; runat=&quot;server&quot; /> <input id=&quot;fbtnupload&quot; type=&quot;button&quot; value=&quot;Upload&quot; runat=&quot;server&quot...
  20. ravula2000

    Question on Datagrid

    I want to display the datagrid in a smaller size on the screen and the datagrid should get the scrollbars. Is it possible. ? Can a panel control works with this..? Thanks Srinivas

Part and Inventory Search

Back
Top