-
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 … -
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 … -
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 … -
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? -
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 … -
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 … -
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 … -
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 … -
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` … -
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 … -
Replied To a Post in Count, store local, then display!
I agree. A better explanation and you would get useful answers. -
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 " … -
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. -
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. -
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. -
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 … -
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 -
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 -
Replied To a Post in Hi i am aditya shah
Welcome! I like networking too. -
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 … -
Replied To a Post in Hello I'm The Tech-Emiretus
Cool. Welcome. -
Replied To a Post in Building first MVC application
Also if your looking for something like this  Then you can tell me and id give you the classes i used to generate that. Hope that helps. -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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? -
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 … -
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 … -
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. -
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 … -
Replied To a Post in Pendrive files hidden in bad way
@Narendra you dont need to respond to posts this old. -
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 … -
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 … -
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. -
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. -
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 … -
Replied To a Post in Designer has been disabled
Try opening the project on a different machine. See what happens. -
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 … -
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. … -
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 -
Replied To a Post in how to insert string into mysql contains double backslash
Try this `$str = "james////bond` -
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 … -
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 … -
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 … -
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. … -
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 … -
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.