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

    Best Method to silence certain calls and sms

    I've been looking in to an app that would only allow specific people's calls or sms to make any sound during specific times. I know several of these exist but I'm not happy with their interface or they don't always work. I've found how to intercept calls and sms with the BroadcastReceiver but...
  2. tlhawkins

    can an External DLL reference local code?

    Here's the problem: We have several developers working on a DNN project. Most of us are developing locally and we're sharing a lot of classes but one developer is in Brazil and he develops his ascx modules and installs them on the server. They work fine by themselves but now we want him to be...
  3. tlhawkins

    DotNetNuke 5.6 Extensions List

    I looked for a DNN forum and found none so I'm hoping I can ask this here and someone will know. I need to clean up some development on a DNN site before taking it live. I went to the list of Modules I had created at /Admin/Extensions.aspx and looked through which ones it says are "In Use"...
  4. tlhawkins

    Write frames to a video file

    Hey, I've been searching google for hours and the only references to writing a video file are from 2004 using .NET 1.1 Is there a new, simpler way of outputting frames to a video file. I don't really care what kind of video file it ends up being. I just want it to write smoothly enough that I...
  5. tlhawkins

    Why does refresh process another record?

    Hello, I've got a repeater control that lists usernames and has a few buttons to interact with the user. The one I'm concerned about is a Delete button that passes an ID as the command argument: <asp:Button ID="DeleteRecipient" CommandArgument='<%#Container.DataItem.ID %>' Text="Big Red X"...
  6. tlhawkins

    Need to sort Linq Result Set

    Hey, I have a query that is Concatenating 2 select statements into 1 result set. I now need to sort them together. This is the query: Dim fRem = ((From r In db.Reminders _ Where r.CreatedBy = ui.UserID _ Select ID = r.ID.ToString, Name = r.Name, Time = r.ReminderQueues.FirstOrDefault.Time, _...
  7. tlhawkins

    Anyone know a good website profiler

    Hey, I'm looking around for a good program to display information about a website. I don't care if it spiders from the web or looks at files locally. I need it to show me which pages have forms submitting to which other pages. Also want to see a map of links between pages. More complex...
  8. tlhawkins

    Email doesn't get sent

    Hey, The page I'm working with is pretty complex. It makes several calls (upwards of 20) out a VPN connection to retrieve data and execute commands on an external source. Each call retrieves data responses. We send several notification emails throughout the process. I know these theoretical...
  9. tlhawkins

    Need some high level Code Pattern help

    Hey, I'm building a service that needs to have an admin/UI form minimized to the system tray. I've built services with no user interaction and I've built windows programs that could minimize to the system tray. I'm just not sure how to get the 2 together. It seems like making 2 programs (1...
  10. tlhawkins

    That assembly does not allow partially trusted callers

    Hey, I'm moving a website from a dedicated server to a hosted account. There are several assemblies that were created rather loosely on the dedicated server and of course everyone played nice because they were all fully trusted. On the hosted account, of course, I'm getting errors about the...
  11. tlhawkins

    The resource cannot be found. (Off and On)

    I'm having a really annoying problem with this error: Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly...
  12. tlhawkins

    getting error in SOAP client

    Hey, I'm a bit of a SOAP retard when it comes to PHP having been spoiled by .NET so please bear with me. Here is how I'm creating my request: $SC = new SoapClient('http://staging.tgpolicywebsvcs.travelguard.com/tgpolicyservice.asmx?WSDL', array("soap_version" => SOAP_1_2)); $returnValue =...
  13. tlhawkins

    Ajax : AutoComplete box positioning

    Hey, I've got a AutoComplete box that is showing in the right place on IE, but the wrong place on every other browser. What are my options for messing with that? I can't find the actual code that creates the thing, I don't see any CSS that is related to it or any settings about the...
  14. tlhawkins

    XSLTProcessor doing something bad

    Hey, I don't use PHP for XML a lot but I have a project where I need to do a lot of XSLT transformations. The first one I setup worked great. The second one... not so much. Here is what is happening, picture this: XML: <data> <customer> <name>My Name</name> <address>My...
  15. tlhawkins

    How Does IsClientConnected Work?

    Hey, does anyone know how the Response.IsClientConnected call works? I actually need to port the same functionality to PHP which obviously has no such call. I've been thinking about it and it seems like one of two things must be happening in order to be even slightly acurate. One, there...
  16. tlhawkins

    PHP for Response.IsClientConnected

    Hi, I usually hate these kind of questions. I know each language is totaly different. However, I need to know if there is a way to do this ASP call in PHP. Response.IsClientConnected in ASP that would check if the users browser is still connected to the server. I'm converting a site...
  17. tlhawkins

    Add Error Handling to SOAP Proxy

    Hey, I've got a SOAP proxy created with wsdl.exe, I've never messed with any of the code in there. I've used it totally "black-box" style up until now. What I want to do is check each call to see if one of 3 or 4 errors are returned, if so I need to simply repeat the call. I know, in a...
  18. tlhawkins

    Catch Form Submission before it's too late

    Hi, I'm catching all form submissions for a last minute AJAX call: for(var c=0;c<document.forms.length;c++) { if(window.addEventListener) { document.forms[c].addEventListener('submit', onSubmitH, false); } else { document.forms[c].attachEvent("onsubmit", onSubmitH); }...
  19. tlhawkins

    Application data management

    I'm looking for a method of application variable management that is better (as in Faster, more Robust) than the application object. I need to be able to access these "application" variables from a class. Here is a rough description of my setup: VB.Net Presentation layer VB.Net Business logic...
  20. tlhawkins

    anyone used SGMLreader?

    I'm trying to use SGMLreader to clean up some HTML for parsing. I need it to add empty tag closure marks: <img src="source.gif"/> but instead it's throwing in another </img> end tag someplace else. if anyone has used SGMLReader and knows how to get it to close the tags correctly please let me...

Part and Inventory Search

Back
Top