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

31 Posted Topics

Member Avatar for Krefie

Hi boys and Girls, Quick question I cannot seem to find the answer to: Why use CodeDOM to generate a class over say saving the structure of your code as text to a notepad and renaiming it to .cs? or just save it as a .cs file outright? Why go …

Member Avatar for gusano79
0
226
Member Avatar for M.Waqas Aslam

What components are located on the aircraft to? bluetooth, wifi module...by what means can it recieve commands? What is the model/make/Manufacturer of the toy?

Member Avatar for JOSheaIV
0
142
Member Avatar for Krefie

Hi boys and girls, I use at-commands through the comport. The problem is if I send "get everything" to the comport the output is about 30 lines of text in under a second. The c# comport listener is only able to capture about 2 of these lines due to the …

Member Avatar for Ketsuekiame
0
110
Member Avatar for Krefie

If someone can please help with this, how is this even possible. See pic attached...I even did a Thread.Sleep(1000) to make sure the variable gets set to true and then close the port...still.. ! [1c3e8e81ba2568b9cd5c1db56134bc91](/attachments/small/3/1c3e8e81ba2568b9cd5c1db56134bc91.png "align-left")

Member Avatar for Krefie
0
98
Member Avatar for Krefie

Hey boys and girls, I need help, I am working on a project that requires me to build a business tier (.dll) for a c# program, I've only ever used SQL server. The problem comes in as follows, at university I was tuaght how to import a datasource via the …

Member Avatar for C#Jaap
0
209
Member Avatar for Krefie

Hey forum, I've recently started doing research on this topic but to no avail as i'm not getting the answers I wanted so I'm here once again: My question: I need to develop an application to run on a normal desktop, but as an extension we would like to run …

Member Avatar for adams161
0
157
Member Avatar for Krefie

Hey Hey I have found that in certain instances breakpoint just dont cut it for me...let me explain: The current program I'm working on in Delphi Codegear has some 2 mil lines of code under a button click, not bad coding btw, just a lot of fuctionality. Now, the program …

Member Avatar for pritaeas
0
226
Member Avatar for Krefie

hi Guys/Gals OK my question, it seems complicated why I want to do it this way but I have my reasons ^_^ I have 3 Forms, FormBlue and FormRed and FormFunctions Now, the code in FormFunctions e.g. **** uses Blue, red **** FormBlue.label1.color := clBlue; FormBlue.edtBox.text := 'Bla'; OK so …

Member Avatar for Krefie
0
201
Member Avatar for Tim Elsky

[QUOTE]General party games as I have some friends that can't drink for different reasons =)[/QUOTE] ah thats to bad cause I would suggest KINGS....

Member Avatar for Krefie
0
166
Member Avatar for Murprogrammed

The best way is using the languege you are comfortable with...in my case it would be java, so I use JME3 but that only counts as the programming languege, next I use Blender which is a open source 3D modler to design and incorporate my models, my final opinion would …

Member Avatar for adcgv
0
153
Member Avatar for Krefie

Good Morning Boys and Gals Ok my question, and i hope its not a stupid one, I'm fairly new to game development but a long time programmer so here goes Like the thread said i'm using JME3 and Blender: I would like to know if I design 3D models in …

0
52
Member Avatar for rmsagar

i'm still confused though is it : "does not have an apple or not an orange" or "not an apple or an orange"? and according to ur code it wont compile theres a bracket missing?!

Member Avatar for geniarrol03
0
151
Member Avatar for Krefie

ola, Please help, stuck on this error "class TJvGifAnimator not found" and the web is of no use, anyone know of a way to fix this or what path I could include in CodeGear to fix this. I've re-installed all library packages from Jedi component library (JCL) and JVCL. Am …

0
83
Member Avatar for Krefie

Hi guys/gals Ok here is my problem, when importing data from excel using ADO, delphi doesn't seem to be able to import mixed column values...e.g. the column is formatted to integer and the integer values correctly import into delphi, but the same column contains string values it imports nothing or …

Member Avatar for Wolfgan
0
164
Member Avatar for acidking001

[CODE] private void mnOneActionPerformed(java.awt.event.ActionEvent evt) { jDialog1.setVisible(true); } [/CODE] shows the dialog on my netbeans(6.9), depends on what you mean by show? Krefie

Member Avatar for peter_budo
0
314
Member Avatar for kerek2

use your while statement,1) place your question to promt the user for a input inside the while statement, 2) you need a conditional statement inside your while aswell i.e an "if" statement to ensure that the user has entered a number below 100, if the condition is met you sum …

Member Avatar for kerek2
0
144
Member Avatar for Sunshineserene

There is no specific way to extract columns(that i know of), you can use the "Substring" function if all the columns are evenly spaced, or you should try and detect where the next word after the previous starts and get colums that way, there are a lot of ways to …

Member Avatar for Sunshineserene
0
424
Member Avatar for software2down

[CODE] try { boolean complete = txtAfvoer.print(null, null, true, null, null, true); if (complete) {//show a success message JOptionPane.showMessageDialog(new JFrame(), "Printing Page\n" + "Please click finish after printing", "Finished",JOptionPane.INFORMATION_MESSAGE); btnFinish.setEnabled(true); } else {//show a message indicating that printing was cancelled JOptionPane.showMessageDialog(new JFrame(), "User cancelled printing session", "Error 25: Cancelled",JOptionPane.ERROR_MESSAGE); } …

Member Avatar for Krefie
0
114
Member Avatar for mundvawala

ola, since no one else is gonna reply I might aswell give it a shot ^_^ hehe i can't understand exactly whats wrong, it compiles and works on my netbeans? can you plz try and explain in another way? krefie

Member Avatar for Krefie
0
166
Member Avatar for sitajaf

[QUOTE] Quote ... how to listen before any client connects Use the ServerSocket class. [/QUOTE] sigh, whats this information gonna help the oke, we are trying to help him not confuse him. [CODE] ObjectOutputStream output; ObjectInputStream input; ServerSocket server; Socket connection; private void waitForConnection() throws IOException { displayMessage("waiting for connection");//note …

Member Avatar for Stefano Mtangoo
0
180
Member Avatar for seanvitalaim

ola Seanvitalaim, your mistake is you compare strings with == plz use .equals i.e. [CODE] if (grade002.equals("A")) { gradenum002 = 4.00; } else if (grade002.equals("B")){ gradenum002 = 3.00; } else if (grade002.equals("C")) { gradenum002 = 2.00; } else if (grade002.equals("D")) { gradenum002 = 1.00; } else { gradenum002 = 0.00; …

Member Avatar for nikelin
0
114
Member Avatar for Krefie

ola, i need help fast plz, the printing function in java .print() works i.e. [CODE] jtextarea.print(); [/CODE] the problem is, if the jtextarea is longer than 1 page it will print the extra pages on some computers and not on others. I thought it a printer setting, but when the …

Member Avatar for Krefie
0
168
Member Avatar for cfcid

ola, int[] a; would be an array, and the length of this array would be equel to the user input(which would be n) a sequence of integers, like a list if you will i.e it will hold 1,2,3,4,5,6...and in my example if you would like to access the 3 element …

Member Avatar for prisonpassioner
0
94
Member Avatar for yap_1991

Hi yap 1991, Can you give a sample code of what you have done thus far and we can take it futher?

Member Avatar for masijade
0
608
Member Avatar for idblack

[URL="http://java.sun.com/docs/books/tutorial/essential/exceptions/creating.html"]http://java.sun.com/docs/books/tutorial/essential/exceptions/creating.html[/URL] krefie

Member Avatar for Krefie
0
166
Member Avatar for just asif

ola, i've read this post through a few times and i'm still lost...can you maybe try explaining what needs to be done in some other way krefie

Member Avatar for Krefie
0
76
Member Avatar for djenoe
Member Avatar for javaAddict
0
136
Member Avatar for djenoe
Member Avatar for Krefie

Ola As I understand functions and methods can be used to reduce duplicate coding by calling the said functions or methods by components or procedures. Now, when is it better(uses less system resources) to use duplicate coding than functions\methods or vica versa, i.e if you have 3 or 4 lines …

Member Avatar for Krefie
0
257
Member Avatar for Krefie

Ola! This is my first post so i hope its not a stupid one ^_^ ok, I have large quantities text i want to read into my jTextArea, to keep it all nice and clean i use tabs(6 chars long), the problem is that sometimes the words or strings get …

Member Avatar for Krefie
0
174
Member Avatar for BestJewSinceJC
Member Avatar for Krefie
0
510

The End.