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: *

  1. ChainsawJoe

    Using ManagementObject to access IIS

    Hi all, I have written the code below, ideally with the end plan to create virtual directories with redirects from code, but I can't even get as far as loading the properties; the line if (obj.Properties.Count == 0) errors with "invalid namespace". I call the function with from a console app...
  2. ChainsawJoe

    repeater controls renamed to "_ctl00_"!

    Hi all, Can anyone tell me why, having upgraded to .net 2.0.50727, the controls within a repeater on a test server (also running same version of .net) have changed from ctlReturnBuilder_rptReceiptItems__ctl0_drpdwnVoidReasons to ctlReturnBuilder_rptReceiptItems__ctl00_drpdwnVoidReasons (two...
  3. ChainsawJoe

    Table Webcontrol and PostBack

    Hi all, Need some pointers please - I'm dynamically creating a Table Webcontrol (i.e., *not* a Table HTMLControl) and adding checkboxes into some of the TDs. The "checked" status is being set depending on the current values in certain objects. I'm then allowing the user to change the status of...
  4. ChainsawJoe

    vb.net pdf printing

    Hi all! I have this function which prints txt files just peachily Sub PrintAdobePDF(ByVal Filename As String) Dim myProcess As New Process Dim i As Integer = 1 Dim lbRunning As Boolean = True Try myProcess.StartInfo.FileName = Filename myProcess.StartInfo.WorkingDirectory...
  5. ChainsawJoe

    ImageUrl ampersands

    Hi all, I'm using an Image webcontrol within a purchase confirmation page on an eCommerce wensite in order to specify affiliate tag info. E.g. imgTracker.ImageUrl = "https://tracker.clicktrade.com/Tracker/Sale.dll?clicktrade=1234&sale=" & Value & "&uarg=" & OrderId Where "Value" is the order...
  6. ChainsawJoe

    Media Encoder + RDP/VNC = no audio + death

    Hey all. I've just discovered Windows Media Encoder and Windows Media Services (on Win Server 2003) and had a webchat thingy setup yesterday which all went quite well. however, I was wanting to have an extra pc in the room with the webchat going on (one with the webchat software, one for the...
  7. ChainsawJoe

    miniproject - ServerXMLHTTP get info for 'net radio

    I'm really getting into ServerXMLHTTP and XMLHTTP recently, incorporating its functionality into so many new projects within the past month that its just a matter of time before I've a) exhausted all possible uses for it or b) recreated everything google have done recently. Hmm.. neither...
  8. ChainsawJoe

    XML DOM in ASP + namespace issue

    (i realise this might be an ASP forum issue, so excuse the cross-posting) I have the following XML (or very similar). I'm using MSXML2.DOMDocument.4.0 in ASP (will be converted to vbscript for a job), and selectNodes("//image") returns nothing - unless I delete the namespace declaration in the...
  9. ChainsawJoe

    XML DOM in ASP + namespace issue

    (i realise this might be an XML forum issue, so excuse the cross-posting) I have the following XML (or very similar). I'm using MSXML2.DOMDocument.4.0 in ASP (will be converted to vbscript for a job), and selectNodes("//image") returns nothing - unless I delete the namespace declaration in the...
  10. ChainsawJoe

    MotleyFool RDF transform with XSL problem

    I'm attempting to simply parse the rdf file provided by financial website MotleyFool - http://www.fool.co.uk/scripts/rss_headlines.asp - to have the "item" contents appear in a <ul> in the form: <ul> <li><a href="link">title</a</li> ... ... </ul> This should be o so easy, but I can't for the...
  11. ChainsawJoe

    OpenDataSource/OpenRowSet Excel - what's the workbook called?!

    I'm trying to use OpenRowSet or OpenDataSource to query an Excel file, as demonstrated here: http://www.databasejournal.com/features/mssql/article.php/10894_3331881_1 But when using the code SELECT * FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0', 'Data Source="C:\test\Book1.xls"; User...
  12. ChainsawJoe

    C#: Upload all files in a directory

    Can anyone point me to a resource which can help me with this little issue I'm working with: I've written a pretty funky online photo album doohickey but at the mo you can only select one file at a time to upload (as in, you have to browse and select one, then browse and select another etc, then...
  13. ChainsawJoe

    WSHShell, perhaps? Launch apps on the client's machine.

    Hi. I've been have a nightmare trying to get a dll to register on a user's pc (which, by the way, if anyone can help me with I'd be most amazingly grateful!), so I'm now looking for another option. I want a button on an intranet page to launch an application on the user's pc. I've been trying...
  14. ChainsawJoe

    Open an application from a webpage

    Hi. I've been have a nightmare trying to get a dll to register on a user's pc (which, by the way, if anyone can help me with I'd be most amazingly grateful!) which opens applications on the client side, so I'm now looking for another option. I want a button on an intranet page to launch an...
  15. ChainsawJoe

    Off-topic - apologies in adv!: INF file issue..

    I apologise for the off-topic posting - the ActiveX forums are soooo quiet that I'm not expecting much of a response from there, and I really need anyone with one iota of knowledge about INF files, CAB files, dlls etc to help me out. I'm sorry I'm sorry I'm sorry! please forgive me and see if...
  16. ChainsawJoe

    INF file RegisterDlls issue - HAYULP! :p

    I have a dead simple INF file within a signed CAB file which is supposed to register a dll on a user's pc. Right-clicking the INF file and selecting "Install" on my local machine, yields success. Putting the INF and the dll into a CAB file, signing it, putting it in a web page OBJECT tag, and...
  17. ChainsawJoe

    INF file RegisterDlls issue

    Af'noon all, I have a signed CAB file for the company intranet which I'm referencing via the HTML OBJECT tag within a webpage for the intranet users to auto-install a dll (LaunchInIE.dll from www.whirlywiryweb.com - allows IE to securely launch applications!): i.e. copy the dll to their...
  18. ChainsawJoe

    INF file RegisterDlls issue

    Morning all, I've got an unsigned CAB file for the company intranet (I have the digital cert etc, but no-one seems to know the password.. so I'm still waiting on that!) which I'm referencing via the HTML OBJECT tag within a webpage for the intranet users to auto-install a dll (LaunchInIE.dll...
  19. ChainsawJoe

    Indexes - is there some kind of time delay?!

    Hi all I've added a few non-clustered indexes to a huge table (about 3 million records) but when running queries against it in query analyser it still displays a table scan instead of an index scan and a bookmark lookup. I'm losing many valueable seconds on this thing.. Given that I've only...
  20. ChainsawJoe

    Outlook View Control

    Can anyone suggest some decent sites to get tutorials on using the Outlook View Control? I really just need a parameter listing or something.. many thanks all, CJ -------------------------------------------------- http://www.chainsawjoe.com - better than toast. Penguins - better than...

Part and Inventory Search

Back
Top