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

    windows device drivers

    hi, i'm investigating the possibility of creating some device drivers for a network card in windows.. it's for a network emulator and i want to inject bit errors in the data link layer. i know it's easier on linux, and i have code to do it, but i want to make a cross platform emulator. any...
  2. mgriffith

    access datastore through .net

    does anyone know of any way to access public folder calendar data through .net (c#), or otherwise? i can get at local folders in outlook through mapi but i haven't been able to get at the messages in public folders. i had done a similar project with exchange 5.5 and asp, but it required...
  3. mgriffith

    java3d orbits

    i have a question... i can't get my orbits to align right in java3d. it's for a satellite application, but just by hand, i can't get an x, y, and z rotation of a vertical rotation axis to create what i think it should. do you see any problems with the following functions? advice?? comments...
  4. mgriffith

    2 cell in row width problem

    i've got a problem with a table... i have a main table set up with a header row (colspan 2), navigation and content cells in a row, and then a footer row (colspan 2). i need to set the navigation to a specific width (165px) and have the content take up the rest. the only...
  5. mgriffith

    setting the default base class for pages in a site

    if you have created some sort of derived page (from System.Web.UI.Page) for templates or other reasons, and you wish to use this as the default page base class (rather than System.Web.UI.Page), then simply add this line into your web.config file <!-- pages Attributes...
  6. mgriffith

    trying to produce w3c valid code....but id tags are invalid

    if i have a control with an id=&quot;q&quot;, when my page is rendered the control takes on the id=&quot;_ctl0_q&quot;. there's no functional problem, but i'd like to have my pages w3c valid, and id's are not allowed to begin with an _ according to spec. any idea on how i can get rid of it...
  7. mgriffith

    netscape compatibility problems

    i'm having some problems with netscape 4 compatibility on a website i'm working on ... http://wheelie.cwru.edu/CWRUHousing 1. the select box above the navigation on the left appears as text in netscape 4 2. there's a strange reaction when i have a <input type=&quot;text&quot;> and then an...
  8. mgriffith

    HttpHandler output using System.Web.UI.Page

    ok, so i have this handler for &quot;xml2&quot; files...all they are is regular xml files structured like <html><content> <p>text</p> <special_p color=&quot;red&quot;>etc etc</special_p></content></html> so that i can use xsl to simplify formatting and parse in menus and what not. it was all...
  9. mgriffith

    database design with lots of data

    i have a question...i am currently in the midst of an application using only a few tables that are linked together. one of the tables is possibly going to have in the upwards of 1,000,000 rows (if my calculations are correct) when the data is transferred from the old database setup (which only...
  10. mgriffith

    using javascript to change elements in particular media

    quick question... anyone know how i can use javascript (in ie5+) to change the display attribute of an object only for a certain media ex (not really working but idea) ----------- document.getelementbyid(&quot;table1&quot;).style.print_media.display=&quot;inline&quot;; ----------- my problem...
  11. mgriffith

    cancelling print command

    any idea on how to cancel someone from printing i've tried function window.onbeforeprint() { event.returnValue = false; return false; } function window.onkeyup() { if (event.keycode==17) //ctrl { event.returnValue = false; return false; } } how do i capture them pressing...
  12. mgriffith

    poorly formed attributes needed

    anyone know how i can output this in my xsl-parsed xml document -------------------- <pre wrap> text here</pre> ------------------- thanks mike griffith ---------------------------- mgriffith@lauren.com mdg12@po.cwru.edu
  13. mgriffith

    table breaking across pages on print

    anyone know of a way to not let any region (whether it be a span/div/table/etc) be split across pages....i don't want to use page-break-before/page-break-after because i have multiple regions on a page, and each one is fairly small, but i don't want them to be broken across pages any ideas...
  14. mgriffith

    trigger for archiving (in sql 7)

    i need to archive any changes made to one of my tables...i thought i might be able to do it with a trigger, but i'm beginning to think otherwise....here is the code for my trigger: --------------------------------- CREATE TRIGGER tblRunCardProcessData_RevisionTrigger ON...
  15. mgriffith

    open webpage with non-querystring parameters

    anyone have any idea how to use webbrowser.navigate (or any other method) to open a webpage with 'post' (rather than 'get') parameters. basically i'm spawning an internet explorer session to a webpage that requires login, using the same credentials as in the vb app. i don't want to pass them...
  16. mgriffith

    typecasting without copy constructor

    i have a hopefully quick and easy question about syntax, i have a com control which is only useful if i can declare a variable of a what i think is a type in the com control i need to typecast a variable to something in the com control before i can use any of the static properties in there, but...
  17. mgriffith

    add class to listbox

    i have created a simple class and want to add it to a listbox using the overloaded tostring() method...i've seen this done in about 10 examples, and straight from msdn, but it's not working for me (using a System.Web.UI.WebControls.ListBox) even with a simple class: ------------------- | Public...
  18. mgriffith

    update with inner join problem

    after reviewing the faq on updating with inner joins, i tried my own and failed miserably...anyone have any ideas on why this won't work (it's not giving me an error message when i try to add it, it just says operation not allowed)...it's sql 7.0...
  19. mgriffith

    method executing too many times

    i have 2 methods that are using IWebBrowser2 to execute a print method from a com object that is hosted on a webpage. here is the code for the methods: --------------------------------- STDMETHODIMP CTemplatePrinter::IEPrintNoPrompt(VARIANT varTemplateURL) { CComPtr<IOleContainer>...
  20. mgriffith

    com method executing too many times

    i have 2 methods that are using IWebBrowser2 to execute a print method from a com object that is hosted on a webpage. here is the code for the methods: --------------------------------- STDMETHODIMP CTemplatePrinter::IEPrintNoPrompt(VARIANT varTemplateURL) { CComPtr<IOleContainer>...

Part and Inventory Search

Back
Top