hi all, i m doing B.E. and now i m in final year and i m searching for my final year project. please suggest me some idea which should be innovative and...
In another form I did a call to a routine in an MDIform. I did it by typing MDIform1. and then choosing from the drop-down menu, the name of the routine, so...
Hi Kenny, First, let me apologize for the delay in answering. Second, let me say that I could not replicate the problem that I was trying to describe, just as...
Poonam, Its always recomended to do a live project during final year and this is probably a dbms lab project, in that case you need to be very good in any of ...
Hi Anthony, ... Yes it is possible to call methods on MDI forms, just like other forms, and (assuming you are using VB6) what you describe sounds correct. What...
One thing to check is whether the routine you are trying to call (the one in the MDI form) is PUBLIC or PRIVATE. A PRIVATE routine can't be seen by the other...
Hello All, I have managed to get the API Viewer to show in the Add-Ins drop down list. When clicking on it, it shows me a list of three items: Constants,...
Hello All, I've been looking on my system and discovered that the Win32API.MDB file does not exist. This leads me to to two questions: 1. Should the...
Hello All, I've found the Win32API.txt file, but I'm not sure where it goes. I've tried the \Windows\System32 but it still isn't loading when the API Viewer is...
API Viewer >> File >> Load Text File Once loaded, it can be converted to an MDB from the File menu, although I don't know if there is any benefit to doing so....
Thanks Adel, For some reason, it didn't occur to me to look at the drop down menus, whilst working in the API Viewer. I just expected it to be there. Thanks...
Hi everyone, Pls check the attached zip file. Clicking on the Start button takes a START TIME to the first text box, system time to the 2nd text box and...
i need help i had done a visual basic applicaion project with access databases. i want to connect the visual basic application to the access database remotely...
Good Afternoon, Take a peek at the attached text file, and if you have any questions, just ask another question on this list. Everyone will be happy to help...
Good Afternoon, Take a peek at the attached text file, and just follow the directs provided. If you have any questions, just ask another question on the...
Hi Expert's i need help i had done a visual basic 6.0 applicaion project with access databases. i want to connect the visual basic application to the access...
My Visual Basic code is doing something I don't understand. I have an IF condition that is FALSE, yet the code on the next line is hit, indicated by a...
I may be mis interpreting the code but - if you have a not it is like saying if this is "not true" then do the following. Try taking out the not and your code...
Johnson, Julie
JulieJohnson@...
Aug 14, 2006 8:21 pm
18541
The NOT is part of the condition of the IF. I'm testing for the scriptblocked(currentscript) to NOT be true. If I remove the NOT, I'll be reversing the...
Avrohom, Set your breakpoint at the conditional (line 1392) and take a look at the variable state then. Now, I have no idea why you got to where you are. Set...
http://msdn.microsoft.com/vstudio/express/vb/learning/ Just in case anyone interested in VB.NET hasn't discovered this page, I highly recommend it. There are...
My Pleasure AC, happy to help out. Steve ... From: A Chowdhury [mailto:achowdhury@...] Sent: Monday, August 14, 2006 2:21 AM To: 'Steve Manser' Subject:...
Tim, Is the Express edition just a scaled back version of vb.net? If so, I want to load on my home pc and use this a tool to learn basic concepts of .net. Joe...
It looks like the value of your variable is False, and NOT False is True--therefore, the imperative statement following THEN is executed. Why not try...
Good Evening Avrohom, From your screen shot, where Intelli-Sense is providing this: Not scriptblocked(currentscript) = False ...is telling you that the...
Actually, the debugger is telling him that the condition is False...the highlighted "Not scriptblocked(currentscript)" condition is false. The degugger in...
Hi Tim, Is that a change for the dot Net languages ? I was always under the impression that the 'If....Then' portion had to be True, for it to be executed...
Steve, You are correct, .NET doesn't change the structure of the IF...THEN conditional. All I was trying to point out was that the condition as shown in the...