Click here to Skip to main content
15,901,373 members

Comments by sean871 (Top 18 by date)

sean871 10-Apr-23 18:52pm View    
is this approoach better


$client_info = Family::with(['pendingcases', 'demographics', 'requestOrder'])->find($family_id);

return view('profile', ['clients' => $client_info]);
sean871 10-Apr-23 18:22pm View    
could you explain more
sean871 16-Jan-16 9:35am View    
hey

it said this line
$r = new HttpRequest($this->url, HTTP_METH_POST, $r_options);
sean871 20-Dec-15 21:37pm View    
idk nothing i did works , followed your link to w3schools
sean871 28-Jun-14 17:34pm View    
Deleted
i tried that nothing worked
here is the rest of my code

// a method created to hide the form title
private void notitle()
{
mainForm mF = new mainForm();
mF.Text = string.Empty;
this.Text = String.Empty;

}

private void Form1_Load(object sender, EventArgs e)
{ // the following line of code shows the form's title
if (display_hideformtitlecheckBox.Checked == true)
{
this.Text = " Assignment3";

}
else
//the following line of code hide the form title if the checkebox is unchecked
if (display_hideformtitlecheckBox.Checked == false)
{
// we now invoke that method
notitle();
}

}