- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
IT developer and document composition expert. Founder of www.zorabyte.com
- Interests
- Sports, computers and family.
27 Posted Topics
Re: My first programming job basically consisted of running other peoples code. Then for a while I learnt what they were doing and eventually started writing my own. If you can read code and translate to English exactly what is going on and can also translate English into a workable algorithm … | |
Re: I agree. Forum posting is a great way to promote SNIP Please don't ban me. I'm making a joke and linking at the same time :) | |
Re: Make your textbox variables public and then select the text as follows: [CODE] { SmsMessage messageFromForm1TextBox1 = new SmsMessage (form1.textBox1.Text, "this text get from 1 textBox1") messageFromForm1TextBox1.Send(); SmsMessage messageFromForm2TextBox1 = new SmsMessage (form2.textBox1.Text, "this text get from 2 textBox1") messageFromForm1TextBox1.Send(); } [/CODE] | |
Hi there, I am currently struggling through trying to figure out why a statement in my source code isn't being executed when running the program. The code is as follows: taxableValueDifference := previousTaxableValue - newTaxableValue; grandTotalTVDifference := grandTotalTVDifference - taxableValueDifference; XLWorksheet.Cells[row, 7].Value := XLWorksheet.Cells[row, 7].Value + taxableValueDifference; The first and … | |
Re: Try looking into the action performed when an item is clicked. See this article on how to fire events from a JComboBox [URL="http://docs.oracle.com/javase/tutorial/uiswing/components/combobox.html#listeners"]http://docs.oracle.com/javase/tutorial/uiswing/components/combobox.html#listeners[/URL] Hope this helps!! | |
Okay this may be a silly question but my network / web design knowledge is pretty minimal. I have a web site where I want to display an image that has a GUID query string attached. When the page is opened using my internal IP address I can see the … | |
Re: Hi there, Can you post your code so we can see how this is happening? Thanks and good luck! | |
Re: Hi there, Please post your code, screen shots if necessary, and the process you are currently employing that isn't working for you. We all want to help but we need you to be clearer otherwise we won't be able to/ Good luck! | |
Re: Try making a file with a list of all the usernames and there corresponding directory. Populate the drop down box with this list of usernames. When a name is selected then read the corresponding folder and open the file inside this folder. There are tutorials everywhere for reading and writing … | |
Re: Hi there, What part of the problem are you having trouble with? If you need a good starters tutorial check out [URL="http://www.homeandlearn.co.uk/net/vbnet.html"]http://www.homeandlearn.co.uk/net/vbnet.html[/URL] If you need any further guidance please check back with more details. Thanks! | |
Re: I would also like to know. I believe canonical just relates to the simplest form an object can take. I'm confused as how to define the simplest object. Good luck! | |
Re: Also, please post all your code. Where do you have your main method? | |
Re: Yes this is absolutely possible. Just set an action to be performed on clicking on the dropdown menu that updates another area in your GUI with the value. Give it a go and then post back with how you are getting along. Thanks! | |
Re: Hi there, Can you please specify exactly what the issue is, and please post your code that you are having an issue with. Thanks! | |
Re: Think of multiple constructors in a class as being different ways to create your object. If, for example, your class involved some sort of form you could construct a blank form or one already filled out. The filled out form would have a constructor that allowed parameters to fill out … | |
Re: If you need to register 32-bit DLL's see this article [URL="http://support.microsoft.com/kb/249873"]http://support.microsoft.com/kb/249873[/URL] for a pretty decent explanation. Thanks! | |
Re: In my experience the DBA's have a more stressful time. Updates to DB's often happen in the wee hours of the morning and if a database goes down, you get the call and can have an entire organisation waiting on you. Don't get me wrong, being a DBA is a … | |
Re: Step 1: Place left hand beside left ear. Step 2: Place right hand beside right ear. Step 3: Clap | |
Re: Your case statement is based on the integer TIMES. This value never changes and is always zero. Try making a method that increments the ncounts and call that passing die1 and die2 and you should be ok. | |
Re: What error exactly are you getting? Have you tried manually performing the insert statement directly into the database? What are the values of txtNewUsername.Text and txtNewPassword.Text when the insert fails? | |
Re: www.zorabyte.com is a new site looking for people to start some open source projects. If you have any ideas jump on over to http://www.zorabyte.com/SourceCode.aspx Thanks, Bernie. | |
Re: Try the following: [CODE] private void TestStrings(string p, string p_2) { // Change the case of the two strings to be the same, either upper or lower p = p.ToLower(); p_2 = p_2.ToLower(); // Convert string to char array char[] charArrayP = p.ToCharArray(); char[] charArrayP2 = p_2.ToCharArray(); // Sort the … | |
Re: B. Constructors are used to create an instance of a class. | |
Re: [CODE]BaseClass var = new SubClass();[/CODE] Should be [CODE]SubClass var = new SubClass()[/CODE] Your var is still a SubClass which is a sub-class of BaseClass | |
Re: Check out this page: [url]http://zorabyte.com/CSharpTutorials/Database.aspx[/url] It runs through how to create a convenience class to do basic db functionality and it has an example program using that class. Hope this helps! | |
Re: I think starting by implementing something like a text editor (just try and think of all the things missing in other editors and implement them). You can add things like a hex editor, ftp client, database connectivity, emailer etc... and you can implement threading and other constructs to improve performance. … | |
Hi there, I'm having some real issues with restoring a piece of legacy software at my workplace. I have an offending line of code that I can't debug. [CODE]bFound := tblComp.Locate('CompPhone;Title;AddLine2', VarArrayof([sPhone, sTitle, sAddLine2]), [])[/CODE] When the script gets to this point sPhone, sTitle and sAddLine2 are correctly populated. When … |
The End.