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 SkipVought 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: f0z
  • Order by date
  1. f0z

    Another Safari Form Element Question

    Ok, i recently asked about the styling of input text boxes but couldnt get a working solution. I'm now trying to apply some style padding to an input text box but alas it's not working. Is it that the MAC OS takes over the displaying of all form elements in safari? or is there some styles that...
  2. f0z

    Safari - Input Text Box Styling

    so basically i'm f**ked. right - well isnt that wonderful. cheers for the verification on whether or not this was possible.
  3. f0z

    Safari - Input Text Box Styling

    Hi, I'm working on a cross browser solution that involves setting the border width of a input type="text" element to 0px. It works fine on most browsers but doesnt seem to take effect on safari. I've read on a few sites that this mightn't be possible to do on safari but i dont believe that for...
  4. f0z

    IE for MAC Div positioning

    ok i know that this probably not the greatest or most robust of fixes but feck it it's working for me :D At the end of the getElementLeft function I've added the following line: if(mac_ie) return xPos+10; Before this line: return xPos; And in the getElementTop I've added the following...
  5. f0z

    IE for MAC Div positioning

    Unfortunately I can't I'll post the code: HTML and Javascript so that you can easily copy and paste. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head><title>testing</title> <script language="javascript"> var ns4; var op5; var op6; var agt; var mac; var ie; var...
  6. f0z

    IE for MAC Div positioning

    the values arent miles off, I'm sure there's some structure to what's going on, I'm just not sure what it is. The values are less than what they should be which leads me to think that I'm getting the xy values of something in the table relative to the table not the page itself. Today is...
  7. f0z

    IE for MAC Div positioning

    trying to get the position of a table cell, as for the doctype definition, is there a specific one for IE-MAC? Yeah I've thrown in a few alerts and am getting back numbers just not the ones that I want ;)
  8. f0z

    IE for MAC Div positioning

    Ignore the fact that it's called getY when it returns the x value - little type-o. Cheers.
  9. f0z

    IE for MAC Div positioning

    Hi this has been bugging me most of the day, should be nice and simple but I must be doing something simple wrong. Or maybe it's IE. I've created a function that returns the xy coordinates of an element. Then a div is positioned using these xy values. I've got it working for most browsers. But...
  10. f0z

    Query Question

    I've a db with a many-many relationship. Very simple implementation with just 3 tables. tblSoftware[smallint sid, varchar sname] This table just holds all the software titles. tblImages[smallint iid, varchar iname] This table just holds all of the different images that we have in the company...
  11. f0z

    Delete documents from sharepoint using PKMCDO

    Ok, After a week messing around with this thing I stumble across the following on google groups: Next thing is that after several weeks of programming against SPS with C#, I regret using this tool. If you can, use VB.Net for accessing SPS/PKMCDO, e.g. I found no solution for deleting documents...
  12. f0z

    Delete documents from sharepoint using PKMCDO

    Here's what the microsoft site has to say about it(from http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spssdk/html/_delete_method.asp): pvarChildrenURL, Optional Variant that contains an array of Variants. Each Variant in the array contains a String that contains the Uniform...
  13. f0z

    Convert string to integer..

    could you not do a Int.Parse(string)
  14. f0z

    Programatically Delete Documents

    I'm trying to get a part of an app that I'm creating in c# to delete a document from the document store. Has anyone tried and got this to work?
  15. f0z

    Delete documents from sharepoint using PKMCDO

    Hi, I'm trying to delete a document that's in the sharepoint document store but I'm having difficulty with the parameters that the PKMCDO.KnowledgeDocument.Delete() function requires. It's asking for a (ref object pvarChildernUrl) This variable is used to specify children of the document that...
  16. f0z

    Setting category when dynamically uploading a document

    just to close this off this is the code that I got working: KnowDoc.Categories = new object[] {@":Category:SubCategory"}; I hope this helps someone else out there f0z
  17. f0z

    File Upload Problem

    I've added this piece of code in there now: string path = @"C:\temp\"; string strUrl = path + strFileName; tbFile.PostedFile.SaveAs(strUrl); // this creates a local copy and amended the line // before docStream.LoadFromFile(tbFile.Value.ToString()); // after docStream.LoadFromFile(strUrl)...
  18. f0z

    File Upload Problem

    Here's the code: PKMCDO.KnowledgeVersion docKnowVer = new PKMCDO.KnowledgeVersion(); PKMCDO._Stream docStream; PKMCDO.KnowledgeDocument KnowDoc = new PKMCDO.KnowledgeDocument(); docStream = (PKMCDO._Stream)KnowDoc.OpenStream( (object) System.Type.Missing...
  19. f0z

    File Upload Problem

    I guess I could do an intermediary standard upload. And the use PKMCDO to take the new file from where ever the System.Web.UI.HtmlControls.HtmlInputFile.PostedFile.SaveAs saved it to.
  20. f0z

    File Upload Problem

    cheers for that - gave the aspnet account the correct access levels to the folder but the problem still persists because I'm not able to open the file. As a test i've created an identical folder on the server c:\docs with the samefile located inside it - and it works fine then. Would that not...

Part and Inventory Search

Back
Top