calling

Calling variables using arryes to change in JLabel after an action

hi guys, i'm having small problems in calling variables and changing the variables after the user hit the change button. i'm new here trying to learn Jave , hope you can help. import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; public class NestedPanelsTwo { private J...

Calling WCF Service from MS Access

Hi all, I want to create a create a WCF Service which is invoked on the button click of MS Access Form. Please help me out. Kind Regards, Shahid Hazoor ...

C# Beginner, writing/calling a Method

When we write a method, say an easy one like void myMethod() { // code here // } and we call it from within Main(), it's done essentially this way: Program myProgram = new Program (); myProgram.myMethod(); Obviously, myProgram is entirely arbitrary (taking into consideration, of course, coding conventions) but w...

pcntl_fork and then pcntl_exec or pcntl_exec and then pcntl_fork

Explanation: Part of the app that I'm creating requires checking of thousands of records and acting on them in a timely manner. So for every record, I want to fork a new process. However, I need a DB connection to do some more checking of that record. As I understand it, the child inherits the DB connection. So subsequent forks have DB e...