Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

pogowolf

@pogowolf
About
Posts
33
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Allow a Desktop app to check for JavaScript errors on given URL?
    P pogowolf

    Using Vb.NET 2010 ============= I am trying to create a function that given a specific URL (like: www.foo.com/bar.htm) will return a Boolean if there are any JavaScript errors. I would LOVE it to return what those errors are as well, but I only need to have it return a yes/no if there are any. I've searched high and low for any information regarding this topic and just haven't found anything about detecting if the HTML page has JavaScript errors. Would anyone have any suggestions, ideas, or code that might be able to help me with this idea? Thank you in advance!

    -== The PogoWolf ==-

    Visual Basic csharp javascript html com

  • What is your dream project?
    P pogowolf

    For me.. it would just be the Ultimate MMORPG..

    -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge question tools

  • First Impressions - Picasa Web Album
    P pogowolf

    Woot! Google let me in! http://picasaweb.google.com/pogowolf[^] If you have used the normal Picassa, not much has changed. Though Now, Picassa with GeoTag via Google Earth, you can FTP your photos,and scan for dups. If you havn't upgraded in a while, Picassa now links into Blogger and you can Email your pics stright from the product. Now just to wait for more drivers so that Picassa understands more then just a handful of image/movie types. Images: .jpg, .bmp, .gif, .png, .psd, .tif Movies: .avi, .mpg, .wmv, .asf, .mov (QuickTime) RAW data files, including cameras from Canon, Nikon, Kodak, Minolta and Pentax. -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge com

  • What's the best (free) newsreader?
    P pogowolf

    I'm suprised no one has posted Forte Agent..http://www.forteinc.com/main/homepage.php[^] -== The PogoWolf ==- "The Devil is a loser, and he's my bitch" - Mr. Lordi http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge com question career

  • IE really Pisses Me Off [modified]
    P pogowolf

    IE6 DOES Support Alpha channels but only on 256 color pallet PNGS. (so it renders like a Transparent GIF) You can use Paint Shop Pro, PhotoShop and even FireWorks to take care of this. There is also a work around by forceing IE to use DirectX in order to render the PNG image in 24-Bit: http://homepage.ntlworld.com/bobosola/[^] Other then that.. wait for IE7. =) -== The PogoWolf ==- "The Devil is a loser, and he's my bitch" - Mr. Lordi http://www.pogowolf.com GamersVue: http://GamersVue.blogger.com

    The Lounge regex help question

  • Populating the Menu Control using XML
    P pogowolf

    :confused: Hey all, I'm trying to populate the menu control with a custom XML file. The XML is a basic Menu Style layout (hiaracy wise), with 3 parameters on each MenuItem entry: Label, URL, and Permission. Where Label is what is to be displayed on the menu, URL is the link, and Permission is the permissons level. The idea is to read in the XML file, add a new menu item, and then add it to the menu. Problem is.. nothing displays. So I know I'm doing something wrong. What I'm looking for is Sample code that would take this XML snippet. Which I can't post.. So I hope you get the idea here:

    Menu
    MenuItem Label="Home" URL=""
    MenuItem Label="Customers" URL=""
    MenuItem Label="Enter New" URL="CustEntry.aspx" Permission="EntCust
    MenuItem Label="Review" URL="Status.aspx" Permission="StatCust"
    MenuItem Label="Registration" URL="Reg.aspx" Permission="RegSubt"
    MenuItem
    Menu

    Menu Layout would be: Home | Customers |
    Enter New
    Review
    Registration

    and some how dump it into the ASP.NET 2.0 Menu control... :confused: or even just sample code of HOW to dump NON siteMap XML into the Menu control would be a God send. -== The PogoWolf ==- http://www.pogowolf.com GamersVue: http://GamersVue.blogger.com -- modified at 15:27 Thursday 18th May, 2006

    ASP.NET csharp asp-net com xml help

  • nau-se-a
    P pogowolf

    X) Spending 45 minutes on the phone with a 9 year old trying to explain how to change the Windows (95/98) DUN settings, and then how to set the modem to turn off V90... because she knew more about the computer then her parents... X2) Getting a new A-Hole ripped out of you by a customer because their "Bee Froze" (System lock, the natural wonders theme changed the mouse cursor into a bee. -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge com sysadmin

  • Help with some logic...
    P pogowolf

    .. God my Signature is perfect for how I'm feeling at the moment.. LOL Anyway.. here goes with the backstory... what I have is a project that is using a Master Template in order to create the primary layout of the site.. Each ContentContainer in the Master is calling one User Control (Wrapper.ascx) The Wrapper user control calls another User control, wraps it's output in HTML and sends all of that back to the master. the code looks like this: '// Load the User control Dim Motd As UserControl = LoadControl("~/SiteControls/Wrapper.ascx") '// Strong type it, and set the properity to which page to render CType(Motd, SiteControls_Wrapper).RenderPage = "Motd" '// Add the control to section of the website. MiddleColumn.Controls.Add(Motd) '// clean up Motd = Nothing Dim Whatsnew As UserControl = Page.LoadControl("~/SiteControls/Wrapper.ascx") CType(Whatsnew, SiteControls_Wrapper).RenderPage = "WhatsNew" MiddleColumn.Controls.Add(Whatsnew) Whatsnew = Nothing From here the Wrapper is called, which does a case select by the 'renderpage' properity: ... Case "motd" '// Message of the day. '// Load the User Control Dim motd As Object = Page.LoadControl("~/SiteControls/MOTD.ascx") '// Get the title text and set it to the Wrapper Label Me.Title.Text = motd.pageTitle() '// add the control to the wrapper 'data' area Me.Data.Controls.Add(motd) '// Clean up motd = Nothing Case "whatsnew" '// What's new? Dim WhatsNew As Object = Page.LoadControl("~/SiteControls/Whatsnew.ascx") Me.Title.Text = WhatsNew.pageTitle() Me.Data.Controls.Add(WhatsNew) WhatsNew = Nothing Which all seems to work correctly sometimes.. the problem I'm running into is lets say I want change pages. which is nothing more then changing the 'page' on the Query String. but what if I want to change a page AFTER some work is completed? so this question breaks down into two parts.. 1) As an example, one of the User Controls is my Login. Once a user logs in the system removes the login panel from the page. What I want it to do afterwards is refresh the whole page, so that site is updated to reflect the changes. however, all I REALLY need/want it to do is to refresh just the 'RightColumn' content control.. is there anyway to just 'refresh' that one control? 2) After the user is logged in, the menu displays a 'log off' link which , once pressed, sets the QueryString to 'Logoff', which then kills the cookies/session for the user in the system. Howeve

    ASP.NET help question html database winforms

  • Gmail and POP3
    P pogowolf

    Well there's two ways around this.. A) Check your Email via the website at work, and just delete everything you dont' want to send home and then start up outlook when you get home to download all the Email. B) Or when you get home, log into Gmail (web) and move everything out of the trash into the Inbox, and unread it all. Outlook should then download all of it. works for me at least. =) Personally I do option A -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge sysadmin question

  • Embedding User Controls..
    P pogowolf

    Well it kinda worked.. got be over one hurdel at least. =) would wouldn't happen to know how to dynamicly call an ascx from a static user control? LOL the idea is this.. I have a control that holds html that 'wrappes' the data being returned from specific controls. Like a login control, or a 'menu' control. This allows for a consent look across the site. Yes, I could just add the wrapper to each specific control..but why duplcat that code, which I dont' need to? so the thought was to have the master page call the wrapper.. the wrapper would then call the the log in control, and the whole thing is rendered. so currently, my masterpage does this: ========================== '// Hold the area where the wrapped controls will be rendered. Dim Area As ContentPlaceHolder = Master.FindControl("CreateMiddleColumn") '// Now add as many wrappers as needed. Dim Motd As Control = Page.LoadControl("~/SiteControls/Wrapper.ascx") Wrapper.RenderPage = "motd" '// which control to render Area.Controls.Add(Motd) ========================== So the Wrapper does this on page load: Select Case Wrapper.RenderPage.ToLower Case "motd" '// Message of the day. Dim Title As New MOTD Me.Title.Text = Title.title() Title = Nothing Dim Motd As Control = Page.LoadControl("~/SiteControls/MOTD.ascx") Me.Data.Controls.Add(Motd) Motd = Nothing Case "whatsnew" Dim Title As New MOTD Me.Title.Text = Title.title() Me.Title.Text = "What's New" Title = Nothing Dim Motd As Control = Page.LoadControl("~/SiteControls/Whatsnew.ascx") Me.Data.Controls.Add(Motd) Motd = Nothing End Select the problem is that the 'RenderPage' doesn't switch if I call the wrapper twice in a row.. would it just be easier to duplicat the wrapper HTML into each control? (though I really don't want to do that.. what if I need to change it? then I would need to update each control.. and there could be 50+) any thoughts or ideas? -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    ASP.NET html winforms com tutorial question

  • Embedding User Controls..
    P pogowolf

    That will work!! thank you Jakob! -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    ASP.NET html winforms com tutorial question

  • Embedding User Controls..
    P pogowolf

    Is there a way to embed an user control IN a user control? For example: let's say you have a login ASPX and you have a Wrapper ASPX that displays a special DIV matrix for layout etc. What I'm looking to pull off is to embed the login.aspx into the wrapper.aspx so that the login form is wrapped inside the wrapper. is this even possible, with out haveing a class or something just return raw HTML to the wrapper? (which is how I'm doing it now, I'm just hoping there's an easier way) thanks!!!! -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    ASP.NET html winforms com tutorial question

  • FAQ / KB Manager
    P pogowolf

    The best program I've come across for this this would be Fishs 'CodeLib' Program. More power then what you know what to do with, and is really cheap for the amount of features you get with it. http://myweb.hinet.net/home4/s630417/[^] -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge csharp html com data-structures tools

  • Game performance problem
    P pogowolf

    Well upgradeing the Video can't hurt.. LOL -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge game-dev performance help question code-review

  • Game performance problem
    P pogowolf

    Well your first problem is your machine is under the recommend specs for the game. You two main issues with this game and your machine is your Sempron, and the video card. (and the 128 on the video card isn't helping) Though I have an AMD Athlon 2.0g, 1 gig of Ram, and a Ge-force 5700.. so you're not THAT much under. However, you are still under and Oblivion takes A LOT of graphics horse power. $200 at Fry's will net you a Ge-force 6800 (with 256 ram) that will do wonders for all your games. I just upgraded mine last week, and the difference is unbelievable. Anyway, your best bet is this: A) make sure you have plenty of HD space free for swap B) Turn off EVERYTHING (and I mean EVERYTHING) before running the game. You might want to use something like 'Smart Close' (http://www.bm-productions.tk/ (FREE)[^] in order to shut everything down automatically. C) be sure your drive is defragged. D) there's also some tweaks that you can do in the Oblivion INI file look here for that information: Oblivion Settings Guide[^] E) You will need to run the game in the lowest settings.. However, I've noticed that the game doesn't always KEEP those settings. So be sure to check them (both in the main launch menu, and in the load game menu) before play. F) make sure your texture settings are set to the lowest possible. Hope this and the Guide can help! -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge game-dev performance help question code-review

  • .NET bases Wiki
    P pogowolf

    Is anyone aware of a good open source/free WIKI written in ASP.NET? (C#/VB doesn't matter to me as long as it works) -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    ASP.NET csharp asp-net com question

  • Vista..
    P pogowolf

    I'm sure this has been asked before, but I've heard that NO VB6 app will work on Vista, and M$ is more or less forceing businesses to migreate from VB6 to .NET has anyone else heard this? -== The PogoWolf ==- http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    Visual Basic csharp css com question

  • Task management software?
    P pogowolf

    One of the better ones that I've played with is: Tasks JR.[^] it comes in two flavors.. one is 'free' and the pro version is stored on their servers. and includes everything you talk about in your post. -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge design business question

  • POTD
    P pogowolf

    I don't get it. =/ -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge com

  • Paper Airplane Game
    P pogowolf

    I know what you are talking about but I can't remember the name of it off the top of my head either. (and I'm at work, so deep net searching is outta the question (darn firewall) anyway... check out: http://www.the-underdogs.org/ and search for 'paper airplane' or some other combination of those keywords, if anyone has it, or knows where to get it, they will. Hope that helps. -== The PogoWolf ==- Like a funkey muckin' a bootfall. http://www.pogowolf.com GamersVue: ttp://GamersVue.blogger.com

    The Lounge csharp adobe game-dev performance question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups