Search:

Type: Posts; User: SharpCode

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    794

    Too much content?

    Just wondering if there is a time period that you should have between posting content on a website? I know that posting too much on facebook can actually have a negative effect but i was wondering if...
  2. Replies
    6
    Views
    1,107

    Re: Eye-strain how to stop it

    I generally try to take a 5 seconds and make sure I blink or look away from the screen. This is everytime there is a load screen or waiting for someone whose in town (diablo 3) or what not. It helps...
  3. Replies
    5
    Views
    1,814

    Re: Laptop HDD corruption

    Ok just got a new hdd installed it and put windows 8 on it works fine. Then i shutdown and it done it normally before i heard a little click sound right before it shuts entirely off. This was...
  4. Replies
    5
    Views
    1,814

    Re: Laptop HDD corruption

    Just tested the harddrive in an old hp laptop didn't get recognised there either. I guess that pretty much confirms it unless anyone has any other ideas. Also recently reformatted and installed...
  5. Replies
    5
    Views
    1,814

    Laptop HDD corruption

    Looks my laptop hdd decided to kick the boot. Left it on went had a nap o the couch for an hour, come back and i get the laptop asking for a boot device.Anyway i pull it apart move it to the other...
  6. Replies
    0
    Views
    856

    Terms and rights question

    All resolved spoke to a friend who is a lawyer and everything is cleared up. If i go ahead no infringements will be done. Thread can be removed not sure how to do it... :p
  7. Replies
    0
    Views
    1,096

    Gallery like section with navigation

    Trying to workout how to design a navigation style page. Best example i have found would be like the video elements theme from this site http://wpbest.com/themes/press75/video-flick-20/ (click live...
  8. Replies
    5
    Views
    1,406

    Re: External harddrive into laptop

    looks perfect thanks heaps will get right onto it. Very handy to have around!
  9. Replies
    5
    Views
    1,406

    External harddrive into laptop

    I have a WD Mybook 1tb that isn't working, at first the it would switch on but the usb connector had come off so had to open it up and put it back on with a solder. Anyway put it all back together...
  10. Replies
    3
    Views
    1,514

    Re: PHP and SSI files

    Taken a bit of a different approach. Definitely doing database but what i need to do now is have another content page that depending on the selection populates with other stuff. So if i clicked...
  11. Replies
    0
    Views
    1,384

    Storing data in MySQL

    Just wondering i have quite a bit of data and hoping to categorize it and have the option of people to view based on their selection. Best example would be brainyquote.com they have tonnes of quotes...
  12. Replies
    5
    Views
    1,494

    Re: select database problem

    yeh seems the user i made wasn't added to the database... common sense -.-
  13. Replies
    3
    Views
    1,514

    [RESOLVED] PHP and SSI files

    I am trying to figure out a way to have a list of links and if it is possible to reload the page and based on the link clicked include a .ssi file with the content. Don't really want to have a new...
  14. Replies
    5
    Views
    1,494

    Re: select database problem

    hmm i added mysql_Error() and it says access denied for 'pmonty7_admin'@'localhost' to 'pmonty7_dsd'
  15. Replies
    5
    Views
    1,494

    Re: select database problem

    Just added it now and still get the same message "Cannot select DB"... is it not recognizing the dbname or is it a issue on the mysql configuration end?
  16. Replies
    5
    Views
    1,494

    [RESOLVED] select database problem

    $con = mysql_connect("localhost","user1","password") or die("Cannot connect");

    mysql_select_db("pmonty7_dsd", $con) or die("Cannot select database");

    $query = "SELECT * FROM...
  17. Replies
    1
    Views
    977

    PHP One or many files?

    At the moment i have an unordered list which is my links to pages on my website. I have set up divs so i have the header, content, sidebar and footer sections.

    Now from what i am trying to get...
  18. Replies
    5
    Views
    1,052

    Help running Mac on PC

    I am running windows 7 but am trying to find a way to install mac so i can boot it up when i start the computer instead of running a host OS like windows 7. I have heard about OSx86 which seems to be...
  19. Replies
    2
    Views
    749

    Laptop Battery help

    Just received my new battery for an ASUS K72J since old one was damaged and would randomly die.

    Anyway i can't seem to find any clear tutorial or guide on the best way to extend the life of a new...
  20. Replies
    4
    Views
    1,252

    Re: [RESOLVED] Simple C error!

    Ooooo appears the error was in the main.c file... using Quincy and the formatting of errors is a bit weird thought there was only one... but i had included readIn.h before adt.h and it didn't like...
  21. Replies
    4
    Views
    1,252

    Re: Simple C error!

    adt.h
    #include <stdio.h>
    #include <stdlib.h>

    /* ONLY ARRAYS NEED TO BE POINTERS */

    /* Polynomial Structure */
    typedef struct
    {
    int degree;
  22. Replies
    4
    Views
    1,252

    [RESOLVED] Simple C error!

    #ifndef _readIn_h
    #define _readIn_h

    void readIn(polynomial*, settings*);

    #endif

    polynomial and settings are typedef structs in a header file that readIn.C uses. So i shouldnt have to...
  23. Replies
    1
    Views
    4,835

    Change Printer orientation

    Dim Prn As Printer

    prn.Orientation = vbPRORLandscape 'or vbPRORPortrait

    Shell("Notepad.exe " & myTextFile, vbNormalfocus)


    I found some code this is what i have so far. What i need is to...
  24. Replies
    11
    Views
    1,845

    Re: socket help in vb.net 2008

    Its split into 2 projects...

    First is the DLL which is the actual classes (TinyServer and TinyClient).

    The second project is a windows form project that uses the functions in the DLL.

    Its a...
  25. Replies
    11
    Views
    1,845

    Re: socket help in vb.net 2008

    You don't get how to use it? or it doesn't come up?

    If it doesn't come up the project is fine but if it DOES show up then just click...


    Click NEXT
    Then tell it you dont want to make a...
  26. Replies
    11
    Views
    1,845

    Re: socket help in vb.net 2008

    It doesn't matter. The Visual Studio Conversion Wizard converts it perfectly fine for me and it compiles and executes without an issue. I am using Visual Studio 2008 but 2005 should be fine. But if...
  27. Replies
    11
    Views
    1,845

    Re: socket help in vb.net 2008

    Take a look at this example/demo: TinyUDP

    Very good and object oriented approach at a simple UDP client/server application. Have a look over that and study it ;)
  28. Replies
    1
    Views
    558

    Re: Stream Problem

    Could we see the whole code? Are you sure the DataSize variable is initialized to 97?

    And it could be completing it properly once it reaches 94 it will output those two lines then check the...
  29. Replies
    5
    Views
    1,887

    Re: change select BOX to Input Box

    <input type="text" name="myInputBox" />

    That's all you need to add, it isn't quite clear what this form is doing so ill let you do it yourself but yea that's pretty much and input box just not...
  30. Replies
    4
    Views
    1,026

    Re: Video Capture and multithread

    Pino's WebCam Class

    Have a look at this thread posted by Pino in the CodeBank it is very helpful!
Results 1 to 30 of 30



Click Here to Expand Forum to Full Width