Forum: Visual Basic 4 / 5 / 6 Sep 13th, 2009 |
| Replies: 1 Views: 232 hey can't seem to send and receive data...i followed an instruction from another site...but its not working...can u guys help me out..
Private Sub conn_button_Click(ByVal sender As System.Object,... |
Forum: C++ Sep 5th, 2009 |
| Replies: 1 Views: 233 ok...i'm having trouble changing a value in a array into a character
void gameon(int **game,int &size,int &x,int &y,int &score1,int &score2)
{
int i,j,num1,num2;
cout<<"Please enter a... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 266 hmmm....ic...thanks for the info....
do you mind explaining the code...i don't quite get it...
int **game ; <---------This line
int size = 0;
cin >> size;
game... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 266 okay, i understand...juz wanna ask...is it possible to create a huge array then minimize the array according to the users input...
for example
game[500][500];
then minimize from there... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 266 hey...i'm having trouble passing a user define 2d array...
void genrand(int &game[][],int &size)
{
int i,j;
for(i=0;i<size;i++)
{
for(j=0;size;j++)
{
... |
Forum: C++ Aug 8th, 2009 |
| Replies: 9 Views: 290 thank u for your help guys...really appreciate them...
i manage to solve them...i did something like this
srand(1);
{
row1col1=((rand()%4)+1);
row3col1=((rand()%4)+1);
... |
Forum: C++ Aug 8th, 2009 |
| Replies: 9 Views: 290 can somebody help me with this....i'm creating a 4X4 sudoku program...with 8 auto-generating numbers and 8 user inputs...i used the random number function rand() but the numbers keep on... |
Forum: C++ Aug 7th, 2009 |
| Replies: 1 Views: 210 I'm juz wondering how do I send a single value to a 8-parameter function...
void enterdata1(int &row1col2)
{
cout<<"Please enter the number for Row 1-Columm 2"<<endl;
cin>>row1col2;
... |
Forum: C++ Oct 10th, 2008 |
| Replies: 1 Views: 267 hello....i'm juz wondering is there any that generates UML diagrams such as sequence diagram,activity diagram n more once i enter my source code??...help me pls
most of the software i use only... |
Forum: VB.NET Oct 6th, 2008 |
| Replies: 1 Views: 568 hello guys,
can anybody help me with smart devices....i need a good website to learn abt this with tutorial and example...can anyone supply me with links???
thanks
Gopinath.. |
Forum: VB.NET Oct 5th, 2008 |
| Replies: 1 Views: 567 hi, i'm currently doin a booking system...i have a problem regarding with the booking date...
Ok, lets say i'm booking a table on the 7th of october at 7.00pm which is 2 days from today...once i... |
Forum: VB.NET Oct 3rd, 2008 |
| Replies: 3 Views: 1,882 thank u soo much mr timoty...its working now..owe...one more question...can i do the exact same thing for the date...coz i need to compare the dates incase they want it 2molo or day after... |
Forum: VB.NET Oct 3rd, 2008 |
| Replies: 3 Views: 1,882 can some help me with this datetimepicker problem...
btime1 is my datetimepicker(format is time)
Dim time559 As DateTime
Dim time1001 As DateTime
time559 =... |
Forum: VB.NET Sep 25th, 2008 |
| Replies: 12 Views: 1,669 bTimeUp = TimeSerial(Btime1.Hour - 2, Btime1.Minute, Btime1.Second)
this line says tat 'hour' is not a member of ' System.Windows.Forms.DateTimePicker'
This line says
If... |
Forum: VB.NET Sep 25th, 2008 |
| Replies: 12 Views: 1,669 thanks again for your jx....i don't understand a few things....will u explain them...thank u...here is my updated code
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As... |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 0 Views: 414 hello guys, i need help assigning details in a listbox to a button, therefore changing the buttons color....any idea...i manage to do something here....
PListBox1.Items.Add("Customer Name" &... |
Forum: VB.NET Sep 19th, 2008 |
| Replies: 12 Views: 1,669 hey thank for your help jx_man....my project is 50% complete....i need help with this problem too...appretiate your help.
here is my code
If tableno = 1 Then
status = "Booked"
... |
Forum: VB.NET Sep 18th, 2008 |
| Replies: 1 Views: 2,712 Hello there.....i just learnt how to use the the oleDb commands to insert into the a database i created from vb.net,but the problem is.....i cannot insert anythin else than OleDbType.VarChar
or i... |
Forum: VB.NET Sep 16th, 2008 |
| Replies: 12 Views: 1,669 thanks alot for your help jx and silam....
say guys can u help with system time...
i have a booking time
eg.
i set the booking time at 1.00 Am,then once the booking equals to system time... |
Forum: VB.NET Sep 14th, 2008 |
| Replies: 12 Views: 1,669 thanks jx..its working....
and yes silam its working too...but now i have another problem...i can display date and time...
now i only wanna display time...i try changing the format but it... |
Forum: VB.NET Sep 13th, 2008 |
| Replies: 12 Views: 1,669 how do i output like datetimepicker.text to a listbox...
I tried datetimepicker1.text but it did not work....can someone help me please
my code is like this...
Rpanel.Hide()
... |
Forum: Visual Basic 4 / 5 / 6 Sep 11th, 2008 |
| Replies: 2 Views: 1,079 try this
datepicker1.value = date.now()....
i think its should work.... |
Forum: VB.NET Sep 11th, 2008 |
| Replies: 0 Views: 361 Hello guys...i need help with this problem...i'm creating a Bistro system...now i'm doing the Reservation part...i'm having some trouble here...its like this :
Start Time :
End time :
And... |