- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
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 …
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: …
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 …
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 …
[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 …
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 …
Eh C is more based for Console App. C++ or Java. I mean you will have least problems and it will take less development time using Java if you hit up Netbeans you can have a working skeleton pretty fast.
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 …
Hm, i dunno if i understand you correctly but here is what i would do. Instead of using <a> tag to make a submit link why not just do it the normal way whit <input type="button"> and remove the design whit CSS. The only way that comes to mid if …
[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: …
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 …
EDIT: I miss read your question.. sorry You could do a while or for loop and just print it all out. Or use a foreach. [CODE]public function iterateNestedArray($array) { if (is_array($array)) { foreach ($array as $key => $value) { print_r(iterateNestedArray($value)); } } else { return $array; } } [/CODE]
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 …
The End.
nered