• Member Avatar for tobyITguy
    tobyITguy

    Created Does anyone use Xamarin Framework?

    Does anyone currently use Xamarin framework for development? Its supposed to enable you develop cross platform with c# but some C# code i use in a console app that works …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Does anyone use Xamarin Framework?

    Does anyone currently use Xamarin framework for development? Its supposed to enable you develop cross platform with c# but some C# code i use in a console app that works …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching php include header is not working

    hello my friends i have posted this article before but it stil didn't work so so i tried many time different way but i dont see the reason why my …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in php include header is not working

    Are the two files in the same directory? the file thats required in the header file, whats the location?
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Building first MVC application

    The virtual enables lazy loading(optional- but ive not seen anyone use it without that keyword), the fact that you have `Patient Patient` along with the key of the class as …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching SQL search | Help needed

    Hi. Im having some problems to understand how to make search in SQL database actually I use this code DV.RowFilter = String.Format("name Like '%{0}%'", TextBox1.Text) DataGridView1.DataSource = DV and it …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in SQL search | Help needed

    If you wanna make it two words from two different text boxes you use DV.RowFilter = String.Format("name Like '%{0}%' OR name Like '%{1}%'", TextBox1.Text,TextBox2.Text) If you wanna search a string …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching inserting to mysql column values form the html drop down list

    Good afternoon, I have a very little knowledge in php mysql. I want to make a periodical report of my company's strength of various departments. I have a html page …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in inserting to mysql column values form the html drop down list

    You are trying to add data into 5 columns but your supplying only 2 columns of data. > $sql="INSERT INTO strength(dept, clerks, executives, helpers drivers) values ('$dept', '$design')"; Between `helpers` …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Count, store local, then display!

    I found this https://github.com/inorganik/CountUp.js As my knowledge of javascript is very weak, i am asking for your help to store the counter result local, then display it on the user`s …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Count, store local, then display!

    I agree. A better explanation and you would get useful answers.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Display table entry in 2 lines in HTML

    I want to split a line into 2 lines. I built my line like this: method = "Email " + TitleOwnership.VehicleOwnership + " Title " + Environment.NewLine + "ORI " …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Display table entry in 2 lines in HTML

    If your trying to display the content in a cell in a table on two lines. You need to add the 'rowspan' attribute in your cell.
  • Member Avatar for tobyITguy
    tobyITguy

    Marked Solved Status for Newbie Alert!

    Hi, I'm into php, C#, html, CSS and networking. Maybe alittle other stuff. I hope i'd be of help here. Im joining from Nigeria.
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Newbie Alert!

    Hi, I'm into php, C#, html, CSS and networking. Maybe alittle other stuff. I hope i'd be of help here. Im joining from Nigeria.
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Hello I'm The Tech-Emiretus

    Hi, my name is Appoh Gideon an eighteen year old coder, mastering in HTML5, CSS3, SASS, JS, AJAX, PHP and MySQL. I didn't realise this earlier but I needed to …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Hi i am aditya shah

    Hi i am aditya shah. I am noob in programming as i am network technician. So i need help with programming
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Hi i am aditya shah

    Hi i am aditya shah. I am noob in programming as i am network technician. So i need help with programming
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Hi i am aditya shah

    Welcome! I like networking too.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Hello I'm The Tech-Emiretus

    Hi, my name is Appoh Gideon an eighteen year old coder, mastering in HTML5, CSS3, SASS, JS, AJAX, PHP and MySQL. I didn't realise this earlier but I needed to …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Hello I'm The Tech-Emiretus

    Cool. Welcome.
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Building first MVC application

    Also if your looking for something like this ![delete.PNG](/attachments/large/4/3e2caa54c973a25041c513fcb2e74202.PNG "align-center") Then you can tell me and id give you the classes i used to generate that. Hope that helps.
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Building first MVC application

    Im assuming that theres a view to add allergies which would then require that it be associated with a patient. I.E the person with that allergy. Check the image of …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Building first MVC application

    You need to annotate and specify the foreign key. public class PatientWeight { [key,ForeignKey("Patient")] public int Id { get; set; } public DateTime DateChecked { get; set; } public double …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Logout an inactive user using PHP

    You need to use javascript to determine mouse movement. Your timer variable needs to be in javascript. `document.onmousemove = function(){your code here}` In your code you reset the timer every …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Logout an inactive user using PHP

    I am trying to log a user out of my CMS after a set amount of time. By inactive I mean has not clicked the mouse or typed on there …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Logout an inactive user using PHP

    The `-4200` just sets the cookie expiration date to a date that has passed. That way the cookie is deleted. So changing the time in that particular function isn't gonna …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching what is stored procedure and how to use in php and mysql

    Any body help me how to use stored procedure and sample code for how to use. I dont know usage of stored procedure. Currently i am facing interview questions on …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Advice on meeting with a professor

    I have a video meeting with a professor who possibility could give me an assistantship for graduate school and I need some advice. Any advice?
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Do while Problem in Dev C++

    Little bit confuse on how can I turn this if else statement to a do while statement. Need some help.. #include<iostream> using namespace std; int main() { int div1,div2,rem,num; int …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Pendrive files hidden in bad way

    Actually, i protected my files in pendrive using usb security kakasoft but now it hidden in a bad way and i am not able to get them back.I scanned with …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Linkedin Connection Issue

    The page just flashes and no data comes from linkedin. And im already logged in on linkedin on my computer.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Pendrive files hidden in bad way

    Actually, i protected my files in pendrive using usb security kakasoft but now it hidden in a bad way and i am not able to get them back.I scanned with …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Pendrive files hidden in bad way

    @Narendra you dont need to respond to posts this old.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Do while Problem in Dev C++

    Little bit confuse on how can I turn this if else statement to a do while statement. Need some help.. #include<iostream> using namespace std; int main() { int div1,div2,rem,num; int …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Do while Problem in Dev C++

    @ atete You dont resurrect posts like this. If this didnt solve your question. Raise a new discussion + with a question like that, you will get no answers. Show …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching How to Load Pdf From url ?

    How to load pdf directly from url? I use C#. eg:http://beta.wms.egobzmail.com/files/deexp/2015_04/2015_04_16/DE14291484222756.pdf Thank you.
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in How to Load Pdf From url ?

    Use WebClient. Download the data as byte array. Append a .pdf to the file name after the download. Open it.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching Designer has been disabled

    Hi, I've been working on a project when suddenly an error occured when I clicked a control and shows a error picture on the control. I'ved attached a picture for …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in Designer has been disabled

    Try opening the project on a different machine. See what happens.
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching what is stored procedure and how to use in php and mysql

    Any body help me how to use stored procedure and sample code for how to use. I dont know usage of stored procedure. Currently i am facing interview questions on …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in what is stored procedure and how to use in php and mysql

    [Yet another Link](http://code.tutsplus.com/articles/an-introduction-to-stored-procedures-in-mysql-5--net-17843) Stored procedures are used to store some actions on your database. So that those actions can be peformed by people without having direct access to the data. …
  • Member Avatar for tobyITguy
    tobyITguy

    Began Watching how to insert string into mysql contains double backslash

    $str="james//bond"; $str= mysqli_real_escape_string($con,$str); //insert query after successful insert in database it value shows as "james/bond" how I can insert exact string
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in how to insert string into mysql contains double backslash

    Try this `$str = "james////bond`
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Count from 2 table

    Hi Im having a hardtime making my query work the way it should be.i'm getting wrong output. basically what im trying to do is a simple user statistic that will …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Simple Directory wordpress

    I downloaded Simple Directory https://wordpress.org/plugins/simple-directory/ & Recommended Plugins to run the Simple Directory plugin INSTALLING SIMPLE DIRECTORY http://lautman.ca/simple-directory/ But it is not working well. After Installing plugin, when you add …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Is Privacy Important?

    When East Germany fell apart, one of the first things people there did was to storm the buildings that housed the much hated Stasi (Ministry for State Security), the ministry …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Long threads

    I am just wondering about a really long thread on the vb.net forum not beeing displayed in a few pages. At the moment it is a really long scroll job. …
  • Member Avatar for tobyITguy
    tobyITguy

    Stopped Watching Error Message when Application Opens

    Hi Group, I'm getting the following error message as soon as the application opens: ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object. at …
  • Member Avatar for tobyITguy
    tobyITguy

    Replied To a Post in DMS - Development

    You can learn how to use google maps [here](https://www.google.com.ng/url?sa=t&rct=j&q=&esrc=s&source=web&cd=8&cad=rja&uact=8&ved=0CDEQFjAH&url=http%3A%2F%2Fwww.w3schools.com%2Fgoogleapi%2F&ei=WWlxVbrTF4jiUeiogvAH&usg=AFQjCNEpmCM5YauE9o1paPf5tNExefFd1w&bvm=bv.95039771,d.bGg) It would work on wamp provided your computer is connected to the internet.

The End.