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 TouchToneTommy 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. 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

    I think jmeckley's idea is worth a shot. We never did find a solution that would work for us and ended up taking the project in a completely different direction. If anyone ever does find a good solution to this problem it would be great to have a link here so we can reference it. Travis...
  5. 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...
  6. tlhawkins

    Why does refresh process another record?

    Silly me thinking that you tell it to use the ID for the CommandArgument and it actually would. Thanks for explaining what's going on. I guess from a UI perspective, based on the "command query separation" principle, it should really pull up the record and ask if the user wants to delete it...
  7. 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"...
  8. 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, _...
  9. 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...
  10. tlhawkins

    Email doesn't get sent

    unfortunately this is just a standard airline ticket booking/purchase process. It's complex, it takes some time, and the user needs to be shown a confirmation page when it's done. Thanks for the directions on the CGI script timeout, I'm going to play with that value and see if I can get this...
  11. tlhawkins

    Email doesn't get sent

    the sendconfemail.php script is too long to post. All it really does is pulls the purchase data back up from the DB and create an email from a template in the db. ... the other suggestion though, I think you might be on to something. the mailer is a home grown class that has some funny error...
  12. tlhawkins

    Email doesn't get sent

    Thanks for the suggestion, I've actually done this with a DB log. What I've found is it either gets there with everything in tact, all variables as they should be, or it doesn't get there at all. This is oversimplified but let me show you how odd it is: breaking into the process toward the...
  13. 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...
  14. tlhawkins

    Need some high level Code Pattern help

    Thanks PG, That's exactly what I was looking for, have some more reading to do now :-) and a little recoding, but it sounds like the perfect method.
  15. tlhawkins

    Give Cell a color based on its value

    I could just picture the poor grid flashing all the different background colors as it goes through each cell... could make a good disco affect :-) Out of Error comes Innovation
  16. tlhawkins

    Give Cell a color based on its value

    Patrick, I'm not sure what you have "e" set to, but shouldn't you be changing the background color of the Cell? try: int index = dataGridView1.RowCount; for (int i = 1; i < index; i++) { DataGridViewCell cell = dataGridView1[7, i]; if (cell.Value.ToString() == "Overdue!") {...
  17. 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...
  18. 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...
  19. tlhawkins

    Remove Horizontal Scrollbar (from TabPage).

    sorry bb, once I again I get in trouble for not reading the whole post. I was giving a browser based solution. For windows forms controls I haven't done this myself but I remember reading a post that explained doing this using the AutoScale Property with some setting or other. You might want...
  20. tlhawkins

    Remove Horizontal Scrollbar (from TabPage).

    You should be able to use a CSS solution. Identify the correct DIV or other container to apply this CSS to: overflow-x: hidden; <- for no horizontal scrolling overflow-y: auto; <- for vertical scrolling or you can use visible to allow the horizontal content to render outside of the container...

Part and Inventory Search

Back
Top