tobyITguy 24 Junior Poster

Your probably using | as you delimiter. You shouldnt.

Add something like * after the sentences then write code to read the content till it gets to that *

so you would have

DaniWeb | a forum to help programmers *
Play | a means to have fun *

then in your app code you make it find a word
and read till it sees a *

tobyITguy 24 Junior Poster

Be yourself. Be corporate. Be in a quiet place with no distractions. Answer what your asked. Dont try to make him feel like your Einstein by telling him stuff he doesnt ask for.

And make sure your internet isn't slow.

tobyITguy 24 Junior Poster

Please show us the code of all your models.

You should try adding the virtual keyword to relationship definitions.

public virutal List<PatientJab> jabs {get; set;}

And also add the relationship in the other table.

public virtual Patient patient {get; set;}

That defines a one to many relationship between Patient and Jabs.

You should also have models for heathconditions and operations in a one to many relationship with patient.

Also id like you to show us the UML for the database. It would help

tobyITguy 24 Junior Poster

Where was this class and method defined?
oSQLS.GetDtasaRecN

tobyITguy 24 Junior Poster

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.

Gribouillis commented: Very good intro +0
tobyITguy 24 Junior Poster

The route is proper. The problem should be at the controller. There should be methods in your reportscontroller that correspond with the report names. To add a new report you need to add a method with the name as your new report and put the logic to make it find and display the report.

tobyITguy 24 Junior Poster

When they said they wanted the code, I dont think they meant all 1422 lines of it. This error could be caused because the designer code references a gui control that probalby was removed. I experienced something similar when using visual studio and writing in c#. Did you delete any gui control that had a method that it called?

tobyITguy 24 Junior Poster

Your missing route definitions. And probably a controller. Show us the content of your RouteConfig.cs and tell us what you have under the controllers folder.

tobyITguy 24 Junior Poster

Your calling it wrong. It should be:

transactions.adopt(chappie,dog);

This is because your adopt method is defined under the transaction class and accepts a customer and a pet.

tobyITguy 24 Junior Poster

when you try to open the designer view for the windows form in your ide, does the gui show?

tobyITguy 24 Junior Poster

why dont you consider using procedural instead of object oriented?

that way you have

$link = mysqli_connect('yourHost','username','password','database');

$q = SELECT fan_count FROM messages WHERE msg_id='$msg_id'";

$result = mysqli_query($link,$q) or die('sorry an error ocurred');

$resultRows = mysqli_fetch_assoc($result); 

Then you can access the data like so

echo $resultRows['column']; 

That should work.