-
Began Watching Database update
Hello All, I am new user to this community as well to PHP. I have designed a website. Now i am stuck with a problem here. I have added some … -
Replied To a Post in Database update
Two ways the query could work (depending on your database design): Your database query could be a query to return everything from the users table for that login. You then … -
Began Watching Which section I should study in asp.net 4.0 from beginner to intermediate l
I have Book of ASP.net 4.0 2010 by kogent learning solution ........... this Book is very large to study ... i just want to know to learn important section of … -
Replied To a Post in Which section I should study in asp.net 4.0 from beginner to intermediate l
Its too big a pool to answer that with any certainty at all. They could ask anything. One strategy is to pick something you know well, or intend to learn … -
Began Watching Classes and Class Diagram Problem
Hello, I am a School Boy and a bit new to vb.net 2008. I want to know about Class Form and Class Diagram in simple language. Can Anyone Help me … -
Replied To a Post in Classes and Class Diagram Problem
I'm not sure what you mean when you say 'Class Form'. Are you referring to the form class? E.g. the class used to create Forms in winForms programs? A class … -
Began Watching Compile question, command line
I have two classes that I am compiling from command line. One is Vehicle class, class Vehicle{ int passangers; int fuelcap; int mpg; } and another is VehicleDemo class. This … -
Replied To a Post in Compile question, command line
Java does an automatic compilation process where any dependent classes it finds referred to within the class it is compiling are compiled too. This is nested so if your Vehicle … -
Began Watching Can I please get help on aligning a css to the right
I cannot for the life of me get this menu to line up tot he right it will only align to the left. http://webhost.pro/why-us.html http://webhost.pro/blog/wp-content/uploads//2014/06/wh.jpg It's the top menu where … -
Replied To a Post in Can I please get help on aligning a css to the right
Which browser are you using because the 'questions 24/7 support login' section is to the right in Chrome and it looks pretty good... -
Began Watching As a beginner, what IDE should I use?
I only started learning Python a few days ago, so as a beginner, what IDE should I be using? Should I just start with IDLE, then move on to something … -
Replied To a Post in As a beginner, what IDE should I use?
I have no experience with Pycharm so I can't help with that. IDLE was OK but when I started using Python I was already used to eclipse so using eclipse … -
Began Watching after upgrade,keyboard is different on what is actually displayed
**Bold Text Here**im using toshiba satellite laptop,i3 windows7 and upgraded to windows8 pro but the @ symbol is mislocated,it was interchange wih "symbol..how to fix them?please i need your help -
Replied To a Post in after upgrade,keyboard is different on what is actually displayed
[this should help](https://nz.answers.yahoo.com/question/index?qid=20081108113120AAP7Y0T) -
Began Watching Get image file based on text box file name proplem
I have windows form have 3 controls 1-textbox1 2-button 3-picture box1 what i need is to display image in picture box1 when i press button to show the file name … -
Replied To a Post in Get image file based on text box file name proplem
Using System.IO you can use the Directory class to get a string array of all files in a directory. Then you can check the array for the file name you … -
Replied To a Post in Create a BankAccount class that has the following:
Well, to be honest, that approach isn't really needed for something like this. You're dealing with two fairly simple classes with limited interaction. I tend to jump start into projects … -
Replied To a Post in Magento advice needed
Thats fine, I just wanted so advice as to whether a custom modue is a better approach than tearing out the product/account fetching code that is already there and replacing … -
Began Watching [Err] 1452 - Cannot add or update a child row: a foreign key constraint fai
Hi,im trying to insert into table student_acedamic_history but I get this error.Heres my code. CREATE TABLE Student_Acedamic_History( S_id INT, Degree_Title VARCHAR(30), Institue VARCHAR(30), Year_Of_Comp INT, Total_Marks INT, Obtained_Marks INT, PercentAge … -
Replied To a Post in [Err] 1452 - Cannot add or update a child row: a foreign key constraint fai
Foreign key constraints prevent INSERT and UPDATE commands if the corrosponding key is found in the referenced table. That means the s_id value you are trying to insert into student_academic_history … -
Replied To a Post in Create a BankAccount class that has the following:
Taywin is referring to at least outlining the classes you will need, either is pseudo code (which a close approxmation of code but written to give you an overview and … -
Replied To a Post in Magento advice needed
well, thats encouraging... -
Replied To a Post in Create a BankAccount class that has the following:
Close but your this.Accountnumber = AccountNumber; needs to match the variable defined at the top of the class (nextAccountNumber) otherwise this.Accountnumber won't match anything. I notice the specs say the … -
Replied To a Post in Create a BankAccount class that has the following:
public void setBalance(int bal) { // double, float or decimal maybe? this.balance = bal; } setBalance() is then called by the class that creates and uses the BankAccount class. Man, … -
Replied To a Post in Create a BankAccount class that has the following:
Mutators and accessors are simply ways of accessing and/or changing the private variables instead of accessing them directly. So, instead of having BankAccount.balance = 20000 you would have a method … -
Created Magento advice needed
I don't know much about Magento so I need some advice. I do know PHP. A client wants to update their website to ecommerce and use Magento as the framework … -
Began Watching Magento advice needed
I don't know much about Magento so I need some advice. I do know PHP. A client wants to update their website to ecommerce and use Magento as the framework … -
Began Watching Problem solving
My computer is missing packet.dll. How can I do? -
Replied To a Post in Problem solving
Ah Google, where would we be without you? [Click Here](http://pcsupport.about.com/od/findbyerrormessage/a/packet-dll-not-found-missing-error.htm) -
Began Watching Create a BankAccount class that has the following:
I am honestly stumped. I need to Create a BankAccount class that has the following: a) Instance variables for: name, accountNumber, balance, typeOfAccount b) Accessor/mutator method for each instance variable … -
Replied To a Post in Create a BankAccount class that has the following:
We don't do homework but we do help when you've tried and get stuck. You shouldn't be stumped if this is homework because you would have done course work leading … -
Began Watching Which is the best programming language for a beginner?
Hello guyz, i just want to enter the world of programming but i didn't know from what i'm starting i took a short look in C also C++ and Java, … -
Replied To a Post in Which is the best programming language for a beginner?
Compared to some more modern languages (like PHP, .net and ruby) C/C++ can be difficult. I would suggest learning something simple but still OOP so you can learn good basics … -
Began Watching CSV - Columns to row
So I have been working with a csv export for a few days now and I have the data almost in the form I need it in. I need some … -
Replied To a Post in CSV - Columns to row
I'm not an expert on Python but I do know it has some advantages for this type of problem but to do this trivally in PHP: Loop through the lines … -
Began Watching Newbie: Using demo_update.asp, getting datatype missmatch error
Guys, I am trying to learn asp, but I am stuck on this error forever... I managed to display and create new, but I can't delete and update. I was … -
Replied To a Post in Newbie: Using demo_update.asp, getting datatype missmatch error
Compare what data type the cid column in the database is to what the cid variable holds after the line: cid = Request.Form("customerID"). Data type erros normally mean you are … -
Replied To a Post in Help with DLL Conversion
Without knowing exactly how you code works, maybe... The methods of a dll become available to your code once it is added but if it requires things like displaying text … -
Began Watching Help with DLL Conversion
I have created a C# code where I'll input a code to it and it returns me an encrypted entry pass code. Its all working perfectly. Now the question is … -
Replied To a Post in Help with DLL Conversion
To build a dll, type this from the command line csc /target:library /out:<dll_name>.dll <list of .cs files to make up dll> After that just add the dll to your upcoming … -
Began Watching insert 2 input values into one column
Hey guys, so im wondering if theres a way to insert 2 input values into one column in PDO? coz in mysql_* i just did something like this and it … -
Replied To a Post in insert 2 input values into one column
CONCAT_WS stands for concatenate with separator. It takes three parameters, the seperator, string1 and string 2. So in your case you told CONCAT_WS that "$dstart' is the separator rather than … -
Began Watching need tips .. IT student 1st year
need some advice.. how to become successful IT student.. please help me my class start on june 9.. and im nervous. -
Replied To a Post in need tips .. IT student 1st year
Well, there is the basic advice: go to your lectures, go to all the tutorials/labs, don't get behind. On a more specialised note, from my own experience when I was … -
Began Watching my headset has two plugs but my computer has one
i got a new headset and when i got i home i open it and found that it had to plugs but my computer only has one plug and i … -
Replied To a Post in my headset has two plugs but my computer has one
One will be for mic, the other for sound. The single plug on your computer will be for headphones (vs head set). How old is the computer and have you … -
Replied To a Post in Query to find duplicate records from database
Ayrton, what does that have to do with finding duplicates in the table as the post title mentions? -
Began Watching Query to find duplicate records from database
Database: id name 1 Supriya 2 Himanshu 3 Deepika 4 Himanshu 5 sonu 6 Sonu I am using name field to fetch the datas and my **OUTPUT** should be as … -
Replied To a Post in Query to find duplicate records from database
It isn't clear exactly what you're after here (based your sample output anyway). If you want duplicate names to be listed together you just need to use 'ORDER BY name' … -
Began Watching [object HTMLTextAreaElement]
Hello i have a textarea on a form when i submit it it returns [object HTMLTextAreaElement] so does on the field of the table. WHat can i do to fix …
The End.