CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: PeejAvery

Page 1 of 80 1 2 3 4

Search: Search took 0.23 seconds.

  1. PHP Re: Looking for honest helpful person to critique my CMS (Content Management System)

    Wordpress, Joomla, & Drupal are the big ones. You can get extensions to do almost anything. And if you can't you can extend them yourself. Would save you weeks of work!
  2. xHTML Re: Need Help on Loading Data in HTML Choose Your Own Adventure Game

    HTML based isn't really the implementation you should be using for such. This would require being IE only due to file system restrictions. Also, being client-side, anyone could easily alter code.
  3. PHP Re: Looking for honest helpful person to critique my CMS (Content Management System)

    Simple question: Why reinvent the wheel? There are 3 really huge/popular/powerful/extendable CMSs out there. And if you bring in the smaller names, then it adds up quick.
  4. Replies
    5
    Views
    5,968

    Re: convert html to pdf

    Welcome to the forums dannycat. :wave:

    Please keep your posts relevant. This thread is already a year old.
  5. JavaScript Re: JScript/JavaScript with Intel GPU Analyser

    ActiveXObject Object

    http://msdn.microsoft.com/en-us/library/ie/7sw4ddf8(v=vs.94).aspx
  6. Replies
    3
    Views
    296

    CSS Re: [RESOLVED] Dropdown Menu Problem

    Adjust margins and paddings.
  7. Replies
    3
    Views
    296

    CSS Re: Dropdown Menu Problem

    Just dig down further in the DOM tree.


    #header ul li ul li a {
    border: 0px;
    }
  8. CSS Re: Menu Jumping when going to a page with a form.

    I don't see what you're talking about. Can you explain a little more?

    Also, have you confirmed that this is a cross-browser issue? Or is it just a problem for a specific browser.
  9. Replies
    2
    Views
    360

    Perl Re: Separating out common code

    Any reason why you don't just use require?
  10. JavaScript Re: auto login to pop-up window in external website

    All a form does is post data to a server-side authentication system. AJAX can do the same thing. It's still posting data just as a form does. Just figure out where it's going and you can post to it....
  11. Replies
    3
    Views
    343

    PHP Re: Confirmation email

    $message = '
    <html>
    <head>
    <title>BreathSlim® Order Confirmation</title>
    </head>
    <body>' . $OrderStr . '</body>
    </html>
    ';
  12. Replies
    3
    Views
    429

    CSS Re: creating user system

    For future game development...you better pick C#. Remember that ASP.NET is not a language, but an implementation. It's written in VB.NET or C#. So you could eventually kill 2 birds with one stone.
    ...
  13. Replies
    3
    Views
    401

    JavaScript Re: java/jquery with excel help

    What programming experience do you have? You are going to need some heavy JavaScripting (if using IE) or Java (if using JavaWS) in order to get this project done.
  14. Replies
    3
    Views
    429

    CSS Re: creating user system

    If you have absolutely no web development experience, why do you actually plan to take on a project you cannot complete? Even a beginner could not handle what all you've laid out. Think about how...
  15. Replies
    3
    Views
    382

    CSS Re: Hopefully a simple CSS / HTML question

    I didn't mention because you called yourself a "very basic coder". Rewriting someone elses extensions would be a pain even for a very seasoned professional. It would first take time to see how the...
  16. Replies
    3
    Views
    382

    CSS Re: Hopefully a simple CSS / HTML question

    Being that it is a CMS based site, the login form, social media icons, and search form are probably all separate extensions. You would probably have to edit the actual extensions to accomplish that.
  17. Replies
    2
    Views
    291

    JavaScript Re: Javascript to html in command line

    You could create any type of script to parse out the <script> tags through regular expressions. Install PHP on the local machine and run scripts through the command line.
    ...
  18. JavaScript Re: automatically login to a website via javascript

    If the form processing is done correctly, it will check the HTTP referrer and make sure the form is coming from it's own site, not anyone elses. If that is the case, you will not be able to...
  19. Replies
    2
    Views
    335

    Perl Re: passing parameters

    That will work.

    FYI...PERL questions do go here because it is a typical server-side language. Forums aren't divided by implementation, rather the language they are written in.
  20. Other Re: How to hide the iframe link (not the iframe)

    Sorry, but there is no way ever to hide/encrypt any client-side code. If it is readable by a web browser, then any human can find/decode it.
  21. ASP Re: Classic ASP and Windows Versions / Request.Servervariables("HTTP_USER_AG

    Rather than splitting up the string, have you tried just doing a string search?


    <% If InStr(strAgent, "Windows NT 6") Then %>
    ...
    <% Else %>
    ...
    <% End If %>
  22. ASP Re: Classic ASP and Windows Versions / Request.Servervariables("HTTP_USER_AG

    Sorry, these forums are very little traffic now-a-days. I personally check in about once a week now.

    If only the first <object> is initializing regardless of OS, then the...
  23. VBScript Re: VBScript: how to write from a txt into a PDF (or a jpg)?

    http://qliktips.blogspot.com/2012/02/printing-reports-to-pdf-using.html
  24. Other Re: Help:HTML/HTML5 CSS/CSS3 Automatic alignings and resizings

    Using the width property in percentages will give you resizing content. For example...


    <div style="margin: 0px auto; width: 50%; height: 100%; background: #000000;">&nbsp;</div>
  25. Replies
    4
    Views
    358

    Other Re: Image problems in HTML, FF specificly

    As the code you posted itself stands, there is no error. The only way we could help better is to have you save an archive of the webpage and upload it here.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width