Posts
 
Reputation
Joined
Last Seen
Ranked #2K
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
2 Commented Posts
0 Endorsements
Ranked #3K
~2K People Reached
Favorite Tags
Member Avatar for nered

I have a FormView that has a datasource bind as a object which is a WCF service. In the WCF Service i have a Object PublicationDetail which has a attribute List<string> authors; I want to join the contents of the list and print them out in the form view however …

Member Avatar for nered
0
152
Member Avatar for nered

Hi, So i got pretty far whit Java i covered basic operation, GUI w/e MVC design etc. It been a fun year learning Java. Now i want to make an application for communication between two points similar to a TFTP Server/Client. So this is how i visioned this to go: …

Member Avatar for JamesCherrill
0
426
Member Avatar for nered

Hi, [CODE] package guiInt; import java.awt.*; import javax.swing.*; import javax.swing.tree.*; public class Init { public Init() { } void buildFrame() { JFrame window = new JFrame(); window.setTitle("Pos Setup Tool 0.1 Alfa"); window.setSize(800, 600); window.setResizable(false); JPanel sidebar = new JPanel(new GridBagLayout()); sidebar.setPreferredSize(new Dimension(250, 600)); sidebar.setBackground(Color.black); JTree tree = buildTree(); JScrollPane sidebar_placement …

Member Avatar for nered
1
131
Member Avatar for nered

Hi, I am writing a small console app. To get right to the point my application comes with quite some data about 1mb of text files. Instead of compiling the software in to a exe and shipping it out whit all the text files is it possible to include these …

Member Avatar for thines01
0
145
Member Avatar for nered

[CODE] maxHList = [(5,3),(7,4),(9,5)] totalH = 0 maxH = 0 x = 0 while x < len(maxHList): totalH = math.sqrt(pow(maxHList[x+1][0] - maxHList[x][0],2) + pow(maxHList[x+1][1] - maxHList[x][1],2)) maxH += totalH x += 1 [/CODE] I am going +1 over the list length and i get this error but if i say …

Member Avatar for Gribouillis
0
92
Member Avatar for nered

Hi, To explain once my app is added to windows path you can simply call it from CMD and you know how when you run a console it opens up a default folder and you can navigate to a new on by using cd .. and cd path command. I …

Member Avatar for nered
0
195
Member Avatar for hegde1997

hello there it my first thread on this forum. well i need some help. See i am thinking abt making my own video player not for any project kinda thing but for my wish and knowledge. I am good in C and java, with help of C i learnt c++ …

Member Avatar for hkdani
0
274
Member Avatar for nered

I recall back in school we worked on a small program for database management and we wrote a method which contained instructions for establishing a connection. Connection con(){} con(); // Would return an open connection Can this be applied to JFrame ? For instance i am making a 800x600 GUI …

Member Avatar for nered
0
78
Member Avatar for calebcook

I don't know if this is possible, but I want to submit information using POST with a link. I know I can use GET, and I know I can use a form with a hidden value and submit it with a link, but I don't want either of those. I …

Member Avatar for calebcook
0
266
Member Avatar for nered

[CODE] #include <stdio.h> int main(){ char *names[1024]; float *rates[20]; FILE* file; file = fopen("tecaji.txt","r"); while(!feof(file)){ fscanf(file, "%s", &names); for(int i = 0; i < 20; i++){ fscanf(file, "%f", &rates); } } for(int a = 0; a < 50; a++){ printf("%s", names[a]); } } [/CODE] The file contents look like this: …

Member Avatar for Aia
0
131
Member Avatar for nered

Well the title really says it all. I am using Netbeans IDE for most of my work when working whit JComponents archive but i know how to make a java frame and add things to it without using Netbeans. Anyways. I decided to write a small program for a community …

Member Avatar for JamesCherrill
0
104
Member Avatar for bufospro

Hi, I have a php array as the following format array([4]=>6 [8]=>12 [3]=>5) and I would like to add 6+12+5 The problem I have is that neither number of array cells nor array_keys are known. Thanks a lot

Member Avatar for bufospro
0
152
Member Avatar for nered

Hi, Iam not new to magento but it's my first time developing a payment gateway, extension for it. Magento is built on top of MVC framework so its extensions aka. plug-ins or modules are built this way> Block, Controller, Module. I have a sample code from the gateway provide on …

0
52