|
How do you feel about yourself now after all the feedback? Must have proud parents for sure (that is if they will even own up to knowing you).
But, I'm here to help, not call you names like 'Tard', 'Jackass' or 'Idiot'. So here's a simple project, that when done properly will require you to do only once and you'll be set the rest of your life.
Module One: With both hands, reach behind you and grab both ass cheeks firmly
(Fairly difficult for some so give yourself 2-3 days "Research" and "Testing")
Module Two: While grasping ass cheeks firmly, begin a 'pulling' motion with your upper body. Continue pulling motion until Head completely exits ass.
Module Three: Release grip on ass cheeks, wipe crap from eye so you can see what you're about to do.
Module Four, Part 1: Stand in front of full length mirror. Pick up your Browning BT-99, Grade III (part of the pre-project requirements gathering), place it on the ground, butt side down.
Module Four, Part 2: Slowly lower ass (from Modules One, Two and Three) over raised end of Browning BT-99, Grade III. You'll know when to stop as you'll feel the raised end of said Browning tickeling your tonsils.
Module Five: Using index toe of left foot, insert into Browning BT-99, Grade III 'activation mechinism'...apply downward pressure.
Module Six: View output results in mirror.
|
|
|
|
|
Mr Zhat
Although the question asked by the poster is bad for everyone, but you look really retarded when you posted such big text all full of nonesense.
Come on mate..take it easy...
|
|
|
|
|
Really? Ok, I'll just stick with calling him a retard, or idiot or moron like everyone else and look...ah...Smart?
Now, if you care to tell those other folks the same as you did me, I'd pay attention.
|
|
|
|
|
Dear All,
I am working on two form Form1 and Form2 i want to like some thing like when i click on edit button the data which is in listview will appear in those text boxes which are on Form2 i just want to now how can i get values from one form1 to an other Form2 please guide me in details.
Thanks.
|
|
|
|
|
Properties and delegates. Read about them you will get your answer.
If the second form opens on the button click itself then there is something called parameterized constructor to help you.
|
|
|
|
|
Ok i am working on this and one more question i have one combo box on form1 i want to display it on form2 the value is in item collection not in database.
For this what should i do what you will suggest then.
Thnx
|
|
|
|
|
Sajjad,
You can get in a list (Array, arraylist) of all these items from the combo box and expose it as a public property to the other form.
|
|
|
|
|
i am computer science student.i have some doubt related to my project topic "logic gate simulator",Is this project enough for 6 months?can you explain the modules?
|
|
|
|
|
More than enough, I estimate it will take you 19 months to completely understand.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
How do you expect anyone to know, but given your lack of ability to make a decision on your own, pr0bably about 10 years.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Yes. Tell your professor that you are going to make a better version of Mathematica. I'm fairly certain that will keep you fairly busy for 6 months-ish
|
|
|
|
|
5 and a half months dithering followed by two weeks frantic posting: "Nd Mathematica Cd. Urgentz."
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys
|
|
|
|
|
What doubts do you have and why?
|
|
|
|
|
|
Well basically I am creating a visual studio addin at the moment in c#. I have looked everywhere that I could think of for the answer to this, but have yet to find the answer. All I am looking to do is handle certain events from DTE2, like build events, solution events etc. But yet when I do it the way that I would think it should be done, the functions for the events never get called in my code.
Example of what I got so far:
private BuildEvents _buildEvents;
public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
_buildEvents = _applicationObject.Events.BuildEvents;
_buildEvents.OnBuildBegin += new _dispBuildEvents_OnBuildBeginEventHandler(_buildEvents_OnBuildBegin);
And then of course I define the function:
void _buildEvents_OnBuildBegin(vsBuildScope Scope, vsBuildAction Action)
{
MessageBox.Show("Building");
}
And then I remove the event in the disconnect code. But like I said it never gets called. I have even tried other events like open solution but same case.
Thanks
|
|
|
|
|
i m getting error
'Error HRESULT E_FAIL has been returned from a call to a COM component.'
help me with the solution.
|
|
|
|
|
It is a very generic error message. Not much help can be offered from this. All I can say is that there is some error in the COM component's method you had called.
Take a look at this[^] blog. It might help.
|
|
|
|
|
I was wondering if you can print a report without the report viewer?
Right now, a user can right click the ListView and select View Ticket and it will bring up a Windows Form with a report viewer in it (linkd to TicketView.rdlc) and it will view the printable version of the ticket.
Now on the same context menu I put a Print Ticket button. My intensions was the user can view the ticket in printable format then print it, or the user could just click the Print Ticket button and it would print it exactly like you would view it in the report viewer.
Right now my ViewTicket.cs (Windows Form) has the dataset, binding source, and table adapter. When this form is opened, the ID (SQL) is passed to the windows form. Then we fill the table adapter using the ID. Now my other forms didnt do it this way since they needed more input before viewing the report. It seemed when I tried this with the forms Load event it wouldn't work.
Here is how I passed the parameters during the Loading of the form (this DIDNT work)
ReportParameter[] parm = new ReportParameter[1];
parm[0] = new ReportParameter("ID", ID.ToString());
reportViewer1.LocalReport.SetParameters(parameters);
reportViewer1.RefreshReport();
Now this exact code would work if I put a button on the form and ran this code during the button click event. But its like the report can't refresh because the form is loading maybe? Not sure..
Anyways, so how exactly could I print this report without going to the report viewer? I understand I would need to pass the ID to the report still, but how do I skip the viewing the report with the reportviewer and printing it from there? How can I just go straight to printing the report with one click of a button?
|
|
|
|
|
Hi all,
How to call the anchor? I am using ItextSharp.dll
My textbox is: webpageurl
i want my textpage able to capture this website after i click the button <<OK>>
What can i put for >>
Using._______._____; to call the anchor ?
How to continue from here?
Anchor anchor = new Anchor("website");
anchor.setReference("http://www.lowagie.com/iText/");
anchor.setName("website");
Anchor anchor1 = new Anchor("This is an internal link");
anchor1.setName("link1");
Anchor anchor2 = new Anchor("Go to the internal link");
anchor.setReference("#link1");
ThankYou
|
|
|
|
|
Whatever ITextSharp is, I assume it comes with samples and docs. I also assume that most people here have as little idea about it as I do, as this is not a forum for users of this dll.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
can i give a standed size to all my new appiering MSN boxes???
A S E L A
|
|
|
|
|
No, you have to create your own to specify size.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
how can i maximize my form when i click on maximize button on top right sid conner??? when i click it just maximize my form bu it didn't work for items in the Form i mean like ListView Boxes, text Boxes, etc....how can i do that?
|
|
|
|
|
Anchor or dock them as appropriate.
|
|
|
|
|
ya i got it...thanks a lot....
A S E L A
|
|
|
|