|
i am having face from which i cropped both the eye and lips and i want to match that pic with another pic and display message as image match can you help me for this its urgent please mail me expected answer.
|
|
|
|
|
No, it's NOT urgent. Everyone here volunteers their time. Questions are answered when we have the chance to, not when you demand it.
What you appear to be talking about is "facial recognition". Start reading these[^]. Good luck!
|
|
|
|
|
|
Hello everybody!
I have two forms: first form have a listbox1 (lists all members) with a button3_click to put a new member in listbox. the second form have four textboxes to type in properties from new member.
So my problem is how can I move the new member with them properties from form2 to form1.
My try is:
here I initialisize form1 with construct without parameters and second with properties-info for a new member
namespace DateiSchreiben
{
public partial class Form1 : Form
{
public Information info = null;
public string path;
public Form1() { InitializeComponent(); }
public Form1(Information info)
{
InitializeComponent();
this.info = info;
}
here I click button to getting start form2 to add a new member
public void button3_Click(object sender, EventArgs e)
{
AddItem item = new AddItem();
item.Show();
}
here is caption of form2 "AddItem" I initialsize form AddItem, when I typed in all info (four textboxes) press button1_click in form AddItem and save all infos in class Information which I want callback in form1. How can I do this?!
namespace DateiSchreiben
{
public partial class AddItem : Form
{
public AddItem()
{
InitializeComponent();
}
public void button1_Click(object sender, EventArgs e)
{
Information info = new Information();
info.FamName = textBoxA1.Text;
info.VorName = textBoxA2.Text;
info.AFid = textBoxA3.Text;
info.Key = textBoxA4.Text;
Close();
}
Finally I want print the new member in the listbox1 in form1
Regards Dick
|
|
|
|
|
|
Thank you, that was exactly what I was looking for.
|
|
|
|
|
You're welcome!
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
|
Don't repost: your question was already there...or your classmates...
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
We may ask CM to open a new forum for that class
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
How big is a class in Pakistan?
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
AOA!
How are you sir. I am doing the project of automatic timetable or custamizable time table.
I enter all the information which is necessary for this, like teacher, class, subject. But now i don't that how do i generate time table from this. any one help me in this please
|
|
|
|
|
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.
Try it yourself, you may find it is not as difficult as you think!
So start by thinking about the task: get a pen and some paper, and do it manually, ignoring a computer.
Work out what processes you need, what data you need and how the processes affect that data.
Write it all down, and then do it again, following the processes and with the data on more paper. When you have an optimal set of data, and a set of processes that manipulate that data, you will have the design specification for your application. Actually coding it is the easy bit!
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
OriginalGriff wrote: get a pen and some paper, and do it manually, ignoring a computer. That's what you teach the new generation?! Shame on you...parer he says...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
Afraid so... It divorces the task from the computer, and gets you thinking about it as separate data items and processes, instead of considering implementation details.
Even a tablet "focuses" you on the computer elements of the solution, instead of considering the task as a discrete operation.
Try it! You might be surprised...
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
I am. Is spend over 70% of my development time on whiteboard or LibreOffice...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
I am working on asp.net web application. I have a code which display data to the user in table format through Repeater Control. There is one column which has two signs plus and minus. I have to display data of n records, so there could be maximum n no. of rows. Initally there will be textboxs User will fill details in that if he wants, When user clicks on plus sign, one row will be added to repeater.if he clicks minus in a row that particular row will be deleted.This process handled on client side not on server side.
So i have yet done plus button code through datatable...Now i want to remove the row on client side through minus button ..
Any One help......plz
protected void btnAdd_Click(object sender, EventArgs e)
{
if (!dt.Columns.Contains("Sno"))
{
dt.Columns.Add("Sno");
}
if (!dt.Columns.Contains("ItemName"))
{
dt.Columns.Add("ItemName");
}
if (!dt.Columns.Contains("ItemQuantity"))
{
dt.Columns.Add("Quantity");
}
if (!dt.Columns.Contains("Price"))
{
dt.Columns.Add("Price");
}
if (Session["datatable"] != null)
{
dt = (DataTable)Session["datatable"];
}
dr = dt.NewRow();
dr[0] = txtSno.Text;
dr[1] = txtItemName.Text;
dr[2] = txtQuantity.Text;
dr[3] = txtPrice.Text;
repeater1.DataSource = dt;
repeater1.DataBind();
}
|
|
|
|
|
|
Thanx .........thats work..
|
|
|
|
|
Hello,
I need to convert US7ASCII data to UTF8 or binary without changing the character set.
I just can search the broken data becasue the stored data is not English.
I tried like this :
Select convert(column_name, 'US7ASCII', 'UTF8') From table_name
But that didn't work at all.
Did I try wrong?
Please give me some ideas..
Thanks!
|
|
|
|
|
Do we talk about Oracle? You are in the wrong place, mt friend!
But! If I remember well the encoding called AL32UTF8 and not UTF8 - that may be your problem...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
I tried AL32UTF8. But It didn't work..
Thanks, though.
|
|
|
|
|
Ehm, you show us a SQL query here in the C# forum...
Let me assume that you use a .Net application written in C#, and retrieve the data from the database. You could use the System.Text.Encoding namespace, with the GetBytes function for the encoding used in your db, and the GetString function for the target encoding.
|
|
|
|
|
Hello,
I am trying to code the expression 9*10^18 which evaluates to 9000000000000000000. I am using a 64 bit machine, so I am within limits. Math.Pow only allows for Math.Pow(9,18) and that gives me the wrong number. Can someone please show me how to implement the whole expression using the Math.Pow.
Thank You.
New Guy
|
|
|
|
|
Math.Pow(9,18) is 9^18, not 9*10^18.
if you have the general case of:
A*B^P
then you want
A * Math.Pow(B, P)
|
|
|
|