Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
56% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #1K
~8K People Reached
About Me

IT developer and document composition expert. Founder of www.zorabyte.com

Interests
Sports, computers and family.
Favorite Tags

27 Posted Topics

Member Avatar for fishsticks1907

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 …

Member Avatar for falchion-gpx
0
350
Member Avatar for PaulSmith1

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 :)

Member Avatar for gadgetandgear
0
363
Member Avatar for cheekangteh

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]

Member Avatar for Mitja Bonca
-1
226
Member Avatar for berniefitz

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 …

Member Avatar for berniefitz
0
148
Member Avatar for Dmiller071

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!!

Member Avatar for Dmiller071
0
177
Member Avatar for berniefitz

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 …

Member Avatar for catherine sea
0
64
Member Avatar for Nandomo

Hi there, Can you post your code so we can see how this is happening? Thanks and good luck!

Member Avatar for jazz_vill
0
141
Member Avatar for singhs18

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!

Member Avatar for singhs18
0
178
Member Avatar for Tobyjug2222

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 …

Member Avatar for berniefitz
0
998
Member Avatar for lili22

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!

Member Avatar for Reverend Jim
0
379
Member Avatar for coolsport04

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!

Member Avatar for gusano79
0
104
Member Avatar for chinee
Member Avatar for NormR1
0
340
Member Avatar for shers

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!

Member Avatar for shers
0
229
Member Avatar for adnysam

Hi there, Can you please specify exactly what the issue is, and please post your code that you are having an issue with. Thanks!

Member Avatar for adnysam
0
152
Member Avatar for ret801
Re: Help

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 …

Member Avatar for berniefitz
0
359
Member Avatar for bluehangook629

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!

Member Avatar for bluehangook629
0
261
Member Avatar for coolbeanbob

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 …

Member Avatar for coolbeanbob
0
276
Member Avatar for peter_budo

Step 1: Place left hand beside left ear. Step 2: Place right hand beside right ear. Step 3: Clap

Member Avatar for WaltP
0
141
Member Avatar for JavaPrograms

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.

Member Avatar for bibiki
0
483
Member Avatar for consc197

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?

Member Avatar for consc197
0
218
Member Avatar for hericles

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.

Member Avatar for vadriaan
0
128
Member Avatar for Krstevski

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 …

Member Avatar for thines01
0
163
Member Avatar for divsok
Member Avatar for stultuske
0
1K
Member Avatar for Rass Saee

[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

Member Avatar for berniefitz
0
121
Member Avatar for kavi4u

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!

Member Avatar for thines01
0
189
Member Avatar for Srcee

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. …

Member Avatar for berniefitz
0
192
Member Avatar for berniefitz

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 …

Member Avatar for Mikav6
0
659

The End.