Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #4K
~2K People Reached
Favorite Tags
Member Avatar for Donnovan

I was wondering if a function of the form public String GetString { get { return stringValue } } is faster than a fucntion of the form public void GetString(out String value) { value = stringValue; } :)

Member Avatar for Donnovan
0
128
Member Avatar for M.Waqas Aslam

hello ! i am working on a telerik reports , i worked on them in asp.net and we can just pass parameters to the report by by just doing this Response.Redirect("rptReportViewerTelerik.aspx?report=rptInvestmentAnalysis&fromDate=" + txtFDate.Text + "&toDate=" + txtTDate.Text + "&doctorTypeID=" + txtDType.Text + "&investmentTypeID=" + txtSegType.Text + "&locationID=" + txtLocation.Text); but …

Member Avatar for Donnovan
0
138
Member Avatar for Donnovan

hello ya'll, i'm looking for help with using regex for finding a name like (v/d haren). can someone help with solving this

Member Avatar for thines01
0
126
Member Avatar for Donnovan

Hallo, How can i use Regex to match names in different files. e.g. i have 3 files with names. i need to link the matching names in the different file. any ideas.

Member Avatar for thines01
0
106
Member Avatar for Donnovan

hi guys, i'm trying to write an character converter using php and ajax. i'm getting a really anoing error(uncaught TypeError). can someone help me with this.?:?: , i've added screenshot of the error. and this is the xml i'm trying to read generated with php [CODE]<?php $key = $_GET['key']; header('Content-type:text/ …

Member Avatar for Donnovan
0
165
Member Avatar for Donnovan

hi everyone, i never worked with php or any script language before i am more of a java, c++, C programmer, but for a school project i need to program a character converter in php, i have some problem recieving response from my php file. can someone help me this …

0
81
Member Avatar for quinnifir

Hola. so, im making a simple program right now to work on my java skillz, and just for fun in general (im pretty new to java). so, i was wondering, whats the fastest way to find the maximum number in an array of STRINGS. because i tried parsing the ints …

Member Avatar for quinnifir
0
127
Member Avatar for presley tonde

am about to start software engineering but am not sure of a better programming language to take..help

Member Avatar for Zaad
0
95
Member Avatar for Donnovan

Dees anyone have experience with this module, [URL="http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm"]http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm[/URL] im trying to use the i/o function on it to read values form this sensor: [URL="http://www.robot-electronics.co.uk/htm/srf04tech.htm"]http://www.robot-electronics.co.uk/htm/srf04tech.htm[/URL] is it possible to do so? thanx

Member Avatar for nmaillet
0
92
Member Avatar for jagadeeshkumar

i am new to java i hava saw error that illegal start of error in this program [CODE]public class double { public static void main(String[] args ) { double d=1232.44; System.out.println("the double value is :"+d); }}[/CODE] please help me

Member Avatar for Donnovan
0
81
Member Avatar for Donnovan

hi guys, i'm trying to write a program in C# to read a SRF04, through a USB I2C connnector. this is my first time working wiht I2C and usb and i need some help. [URL="http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm"]http://http://www.robot-electronics.co.uk/htm/usb_i2c_tech.htm[/URL] im using the I/O settings to write to the Sonar. Can someone provide me wiht …

0
87
Member Avatar for Donnovan

Hi everyone, how do i push item with a givin index in a linkedlist. e.g. linkedlist.add(element e, int index); this is my function [CODE]public void push(Student s, int index){ if(isEmpty()){ start = s; }else{ last.next = s; } last = s; size++; }[/CODE]

Member Avatar for Donnovan
0
98
Member Avatar for Donnovan

hi everyone, i have a constructor like this, [CODE] CStack(int n) { bottom_ = new char[n]; top_ = bottom_; size_ = n; } [/CODE] In my main class i call the constructor by creating a[CODE] CStack(5); // bottom_ = new char [5]; [/CODE] my question is can increment the size …

Member Avatar for Sky Diploma
0
105
Member Avatar for Donnovan

can i change the value of an int with a pointer. e.q. int n = 20; int *size = n; can i change n by doing this *size++. thanx

Member Avatar for sweetyk2
0
86
Member Avatar for Donnovan

hey guys, i'm trying to acces the the member of my person structure, can someone help me, what am i doing wrong are what am i forgetting [CODE]#include <stdio.h> #include <stdlib.h> typedef struct { char *vnaam; char *anaam; int leeftijd; } persoon; persoon *q, p1; //char antwoord2b[128]; void drukaf(persoon p){ …

Member Avatar for Donnovan
0
110
Member Avatar for Donnovan

hi everyone, I'm trying to write a program that calculates the the fourth sqrt() of an int ..., can someone help me thnxx

Member Avatar for DavidB
0
141
Member Avatar for Donnovan

Hi, I'm using Microsoft Visual C++ and I keep getting this error referring to this one line in my main file . can someone HELP ME ? [code]#include <iostream> using namespace std; int main() { float tempFahrenheit; float tempCelsius; float Omrekenen; cout << "Geef de temperatuur in Fahrenheit: "; cin …

Member Avatar for Donnovan
0
193