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 wOOdy-Soft 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: jermine
  • Content: Threads
  • Order by date
  1. jermine

    Displaying Image from dB, getting GDI+ generic error

    I know there have been many posts on this topic, and I have looked at them but I am still having problems. I have a jpeg image which was retrieved from the database and needed to display it in a user control. In the code below, im trying to save the image into a blank image file and display it...
  2. jermine

    grouping and counting of data using xslt

    Im new with xml stuff, and i was hoping some of the gurus here can put me in the right direction. I tried the key generate-id thing but cant seem to make it work. here's my problem : I want to display the following data in a tabular format and count the data based on their grouping. My data...
  3. jermine

    Xml.Load() from file path using Directory.GetFiles not working

    Hello there, I am having trouble loading the xml files i got from a particular path. I got the idea from this particular code : Dim xmlReport As New XmlDocument For Each reportpath In IO.Directory.GetFiles(MapPath("report/"), "*.xml") xmlReport.Load(reportpath) ("report/@name").Value) Next...
  4. jermine

    XML Nodes and Repeaters

    Hello there! Im having trouble displaying the values of an xml output in a repeater. i hope you .NET gurus can help me on this. the xml output : <?xml version="1.0" encoding="utf-8" ?> - <response> - <person> <fname>harry</fname> <lname>potter</lname> <bday>07-31</bday> </person>...
  5. jermine

    Delegates and UserControls

    Hello to the .NET gurus out there. I hope you guys can help me on this... im pretty new to the idea of using delegates. I have the following user controls : 1. one that contains a calendar control - DATECONTROLLER.ASCX 2. one that contains a repeater that displays a list of item i got from...
  6. jermine

    multiple repeaters in one page

    hello to the .NET gurus out there. i hope you guys can help me on this. Thanks in advance! my page have two repeaters, diplaying different sets of data. repeater 1 is bound to DataTable A and repeater 2 is bound to DataTable B. Displaying values for repeater with the code for repeater 1 is ok...
  7. jermine

    How to call method in web user control

    Greetings to the .NET gurus out there! Im kinda stuck at this and was hoping that you could spare time to help a newbie in .NET like me ... My app has a "MyMeeting.aspx" page where a web user control - meetings.ascx- is added. In the code behind of the meetings.ascx is a method that expects...
  8. jermine

    Mail stuck in Queue folder

    Hello there, I hope you can help me on this. My mails are stuck and in queue folder under mailroot. MailMessage msgMail = new MailMessage(); msgMail.To = "MeAsAdmin@yahoo.com" msgMail.From = "sender@yahoo.com" msgMail.BodyFormat= MailFormat.Html; msgMail.Subject = "Hello!" msgMail.Body = "You...
  9. jermine

    InnerHTML and Validation problem

    This is problem thats pretty tricky for me, but for the guru's here, i know this will be a piece of cake... I hope you guys can help a newbie like me. Im using the div tag's contentEditable property for my simple rich text editing (bold, italize, underline, color pick and createLink). Code...
  10. jermine

    update field trigger on date change

    i need to create a trigger that will update the status field in my table to 'A' (active) when its setToActive date is equal to the current date. The default value of the status field is 'I' (inactive). i have attached my code below but please see if this would work and do the trick. CREATE...
  11. jermine

    Editable ASP.NET Control

    Hello asp.net gurus! I hope you guys can help me on this because i am soo darn stumped... i was able to do this task - having a <div> element, and a simple javascript code to do rich text editing. can i do the same thing with an <asp: ??? > control? if so, please be so kind to show me how...
  12. jermine

    ContentEditable / Rich Text Editing

    So I have the usual ASP.NET form, the same as yahoo’s compose email screen minus the function of changing the font and font size, I will only allow the user to set the text to bold, italics and underline together with its short cut keys and usual functions cut and paste Ctrl-C and Ctrl-V plus...
  13. jermine

    Acrobat Browser Compatibilities

    I hope you guys can give me an insight on this. Can Acrobat reader work with: 1. IE 5.5? 2. IE 6.0? 3. Netscape 4? 4. Netscape 7? Are there any other browsers i can use? I am all ears. thanks!
  14. jermine

    Prompts and Subreports

    I am working on Cognos Impromptu administrator version 7.0.702.0 with Oracle 9.2 database. I'm finished creating the main report (crosstab). Right now, my dilema is to create a subreport (list frame) using the same parameters/prompts i passed in the main report without having to be 'prompted'...
  15. jermine

    Subracting group totals

    I have two groups, @assets and @ expenses which i have to subtract. Group Value @asset 2000 @expenses 1500 Total 500 I know this can be done by changing the &quot;summarize&quot; operation for the &quot;grand total&quot; value but problem arises when the...
  16. jermine

    Freeze Main Window until Popup is clicked

    Hi java ppl!! thanks for coming to my aid =). my dilema is this : i have a main page where i input data... when i click the &quot;submit&quot; button, i call a stored procedure that attempts to enter data in the DB, it generates a popup that says whether my input attemp was successful or not...
  17. jermine

    controlling &lt;select&gt; tag attributes

    thanks for taking time to read this ... my problem is this : i have a select box that is initially empty and only populated by selecting a value from a previous select box, lets name it &quot;parentSelect&quot;. its width is the default or just simply uses this code : <select...
  18. jermine

    how to fetch data from multiple rows

    HI! Thanks for reading this. I have to display 25 records at a time in asp page and I have to update couple of columns depending on the client request.The columns that will be updated I am keeping it in an array,once the user enters the data in those columns and enters update button,it will...
  19. jermine

    passing parameters from opener to popup and vice versa

    guys i hope you can help. im stuck with this problem. i have a page / form &quot;edit.jsp&quot; where user may change data upon clicking the submit button. the page,&quot;validate.jsp&quot; is called. here, i have placed an <body onload=&quot;validate()&quot;;> function validate() {...
  20. jermine

    creating stored procs from MS SQL to ORACLE 8i

    i honestly do not know how to create procedures in ORACLE. There's the IN and OUT... i cant seem to understand it. in my mind i need a stored procedure in an MS SQL frame of mind. ============================ Create procedure GET_DATA @Ctry_id varchar(50), @Subj_id varchar(50), @Agency_id...

Part and Inventory Search

Back
Top