I have a form (form1) that has a text field (textBox1) I have a class that has the method \"public static string getValue()\"
I needed a validation tool that could be reused in multiple projects, so I decided to make it a Web User Control. Below are the steps I took to set it up:
I\'m 开发者_StackOverflowtrying to make a class that imports its methods from plugin-like modules.
This is a snipet of code from my main activity, An error is showing up and i don\'t understand whats wrong?
I know this is simple, which is why I\'ve been trying like mad to figure it out myself but I\'m at the end of my rope.
I\'ve got a rather peculiar problem. I am trying to pass a number of parameters to a method in a different class, and three out of the four parameters are being passed just fine. The fourth, however,
Sorry if it\'s a bit long but I want to be as descriptive as possible. I\'m making a test application with several classes and 2 nib files (each class is the owner of one nib). One of the nib files h
I was warned that this post could be too subjective, but I\'ve only been programming for a few weeks, so I\'d like to know.
package com.idol; public class Auditorium { Auditorium(){ } public void turnOnLights() { System.out.println(\"Lights are turned on\");
I have table VIDEO (VideoID int Primary Key, Address Varchar(100)) and I want to search table to see if there is video with given address.开发者_Python百科 But I am not sure if this code works good, a