Forum: Web Browsers 6 Days Ago |
| Replies: 0 Views: 242 Hi,
I'm using IE6 in my PC. 6 mths ago, I have install Visio Viewer 2003 and I'm able to view Visio files in IE.
After some time did not open any visio files, my IE now cannot display visio... |
Forum: Windows Vista and Windows 7 10 Days Ago |
| Replies: 6 Views: 529 I see. I will bring the laptop to Service Centre to check.
Thanks!
KC |
Forum: VB.NET 10 Days Ago |
| Replies: 4 Views: 307 Hi Jireh, There are no try catch function in between. I catch the exception in the function that call ExecuteNonQuery.
About the "show exception" checking option, I do not know where to check it.... |
Forum: Windows Vista and Windows 7 11 Days Ago |
| Replies: 6 Views: 529 To Bob, it's ok. :-) Actually I have try your method before. However, reinstalling of the USB mouse driver does not help. I have download the latest synaptic touchpad driver as well. It doesnt work... |
Forum: Windows Vista and Windows 7 11 Days Ago |
| Replies: 6 Views: 529 Hi All,
I'm using a Toshiba Laptop with Windows Vista Home Premium.
Strangely my USB mouse will suddenly freeze after 3-5 minutes in use. I cannot move my cursor but I can click (left or right).... |
Forum: VB.NET 13 Days Ago |
| Replies: 4 Views: 307 The severity level I used in testing is 15. By right, more than 10 should trigger exception. |
Forum: VB.NET 14 Days Ago |
| Replies: 4 Views: 307 Hi,
I have a VB.Net system that connect to SQL Server through ODBC.
When I try to raiseerror from an IF...ELSE statement, it does not triggered the exception handling.
I have done some raise... |
Forum: Posting Games Mar 12th, 2005 |
| Replies: 7,595 Views: 662,578 |
Forum: C++ Oct 5th, 2004 |
| Replies: 27 Views: 129,035 i'm using getch() at password entering that display * when password is entered. |
Forum: C++ Oct 5th, 2004 |
| Replies: 7 Views: 4,978 actually i also will use if else.
how to use the table driven you mention above? can u teach me? |
Forum: C++ Oct 5th, 2004 |
| Replies: 9 Views: 18,829 #include <iostream.h>
void main()
{ int a[50],b[50],i,n,g;
cout<<"Give the number of elements of both vectors: "; cin>>n;
for(i=1;i<=n;i++) { cout<<"a["<<i<<"]= "; cin>>a[i]; }
... |
Forum: C++ Oct 5th, 2004 |
| Replies: 9 Views: 18,829 have you test running your program? |
Forum: C++ Oct 3rd, 2004 |
| Replies: 27 Views: 129,035 i just want to whether there is a replacement for getch() in C++.
my friend said getch() is C function.
thanks! |
Forum: C++ Sep 27th, 2004 |
| Replies: 5 Views: 5,577 i dunno whether this question has been ask before but i've try to search but didn't found. so i ask it here...
very simple... if i declare
int Z;
cin >> Z;
if I enter integer, it... |
Forum: C++ Sep 14th, 2004 |
| Replies: 2 Views: 3,425 why i have to press "enter" twice before getline can read the string... can anybody help me to solve this problem...
#include <iostream>
#include <string>
#include <new>
using namespace std;... |
Forum: C++ Sep 11th, 2004 |
| Replies: 8 Views: 3,050 fgets(), i've try but didn't work...
about fflush(stdin), if didn't use this function then is there any other function can replace? |
Forum: C++ Sep 10th, 2004 |
| Replies: 8 Views: 3,050 I've just wrote this program and when i compile, the gets() function is skip before i can enter the string. i have try cin.getline but the same problem occurs. Can anybody tells me what's the problem... |