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 bkrike 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: aspengal
  • Content: Threads
  • Order by date
  1. aspengal

    Rich Text Box adding spaces,format

    I have a Rich Text box. in the Pre Render Event,debug mode, I do a this.text1.text = "abcd" Then the page loads. Then I have button in my page. I click the button and then again do a this.text1.text = "abcd " Why does this space get added? I did not add the space at the end but still it gets...
  2. aspengal

    Display an ICON in a datagrid-Help!

    I would like to display an icon in a cell in a datagrid depending on the cell value. How do I do that? HTML <asp:BoundColumn Visible="true" DataField="FILE_ID" HeaderText="Milestone Type" HeaderStyle-CssClass="bodyTextBold" ItemStyle-CssClass="bodyText" HeaderStyle-Width="2%"...
  3. aspengal

    Date Format in C#-Help

    I have a datetime variable and I want to pass the current date in this format to this datetime variable datetime variable = 12:24:36 00:12:33 How do i do that?
  4. aspengal

    Double quotes in string-Help!

    ds.tables[0].rows[0][0] = "<a href=" + """ + ds.Tables[0].Rows[0][2] + """ + ">" I do not know whow to have a double quote within a double quote. ds.Tables[0].Rows[0][2] has a value of www.hotmail.com so, my final output should be : <a href = "www.hotmail.com"> Please help!
  5. aspengal

    concat 2 columns with an 'Enter' between them -Help!

    Hi Yall, I want to concatenate 2 columns in my select each column in a different line. This is an example. Column_A has 'How to create a Service Order' Column_b has 'Click on the below link to create an SOR' My Query: select Column_A+Column_b from tableA Desired Result How to create a...
  6. aspengal

    Does the cloned RS be updated when the orginal is?

    Hi folks, I have a Recordset temprs which is a clone of Recordset rs. In my function, Iam taking a clone of rs into temprs and then Iam updating rs. After updating rs, if i check my temprs, its also updated with the rs values rather than retaining the preupdated value. Why does this happen? I...
  7. aspengal

    Calling Stored Proc from a Stored Proc-Help!

    Hi Friends, I would like to Call SP2 from SP1. SP2 will exeucute and pass an output parameter back to SP1. can someone pls. help me with the syntax? In SP2, I will declare var_out_param and assign a value to it. I need to validate this value in SP1. Is it " exec SP2(var_out_param)"??? Help!
  8. aspengal

    What is IEFrameWarningBypass.htm-Help!!!

    I have a html,aspx,aspx.cs page and it has rich text boxes. when I load the page, i get the yellow mark : Error on Page and it says Line 84 char1. I checked the aspx page and that line just has a </td>. The strange thing is when I hit the back button on this page, it does not take me to the prev...
  9. aspengal

    Need VBA code to download bmp stored as longraw in Oracle?

    Folks, Can someone help me with downloading bmp stored as longraw data? I tried following some examples using getchunk() but it wont work. the resulting bmp file is always having some extra bytes attached to it and hence wont open. If the actual bmp size is 1.19 MB, then the downloaded file is...
  10. aspengal

    Longraw conversion help needed for a newbee

    I have an ORACLE 9i database which has a longraw column. This has the all the data from the .doc,.xls,.bmp,.pdf files that the users upload thru the application. I would like to download all these files from the database into a fileshare and used the below java program. Unfortunately, it has...
  11. aspengal

    Error: Timeout expired. The timeout period elapsed prior to completion

    I keep getting this error when i run reports. the queries are kinda big but they run successfully in SQL Query analyzer without any trouble. But through my C# .net, it fails at about 30 seconds after it starts. The error I get is : Error: Timeout expired. The timeout period elapsed prior to...
  12. aspengal

    Uncheking and disabling of Checkbox! Help!!!

    I have a 4 checkboxes. When the 1st one is unchecked, remaining 3 should be disabled and unchecked. Iam not able to achieve both unchecked and disabled at the same time. This is my code. ******** HTML <td valign="top" nowrap class="bodyTextBold" colspan="5">&nbsp;&nbsp;GW Impact: <asp:CheckBox...
  13. aspengal

    'Alert' with 'Yes/No' instead of 'OK/Cancel'

    I need to show an alert when the user forgets to save the screen. I have a Java SCript alert written, but it will always have 'Ok/Cancel' as the default. The message I show does not make sense with an 'OK/Cancel' labels. I would like to have a 'yes/No' instead of OK/Cancel. Please let me know...
  14. aspengal

    Crystal Reports .net Help displaying large amount of data

    I have a Crystal Report .Net which displays data from a DS which is then passed on to the SQL server session. When the number of rows in the Dataset is less (eg. 2000) then the report viewer opens correctly. But when the number of records is large (eg. 26000) then the report wont open. I get the...
  15. aspengal

    Large File Upload Problem

    In my C# .net application, I have to upload Files from my desktop to a file server. The problem is Iam unable to upload files >2 MB. My web.config file has this in the systemweb tag. Any other setting to be done in the machine.config? I have changed the responsedeadlockinterval in the...
  16. aspengal

    LongRaw data conversion-Pls. Help

    Hi, I have a table which has longraw data in it(not developed by myself). The longraw data has bmps, mpps,.dc,xls, etc..Now I need to extract these files from Oracle onto my desktop. Can anyone tell me or show me a program that does this? Thanks!!!
  17. aspengal

    Group By Headers Display

    I have a Page Header which has some headers like Facility_id, address etc and a Group by Facility_ID which has another header : facility_id, address. I have set the property of the group as : Hide Drill Down-OK and Keep TOgether only checked. All others are unchecked. THis is how my report...
  18. aspengal

    Hide/Show TreeView Button-Help Urgent!!!!!

    I have a c# .net application and I have created a report which has a TreeView on the left. I enabled it via the property :CrystalReportViewer.displaytreeview = true But what I dont see is a button on my tool bar where I can hide/show the Group Tree View. Also, I dont see a print button. In my...
  19. aspengal

    Help using Modulo Arithmetic Operator

    I wanna calculate the Leap year and I have this declare @which_year numeric(4,0) if(@which_year%4) = 0 --is a lear year else --not a leap year this wont work as it gives datatype error....help pls....
  20. aspengal

    For-Next Loop Query. Pls. Help

    Can anyone tell me the syntax for the For-Next loop if at all any in SQL server PL/SQL? Thanks

Part and Inventory Search

Back
Top