Search Results

Showing results 1 to 40 of 52
Search took 0.01 seconds.
Search: Posts Made By: anud18
Forum: Visual Basic 4 / 5 / 6 Jun 21st, 2007
Replies: 11
Views: 1,510
Posted By anud18
ya the form is visible.....and the form is not exited....it is there the whole time
Forum: Visual Basic 4 / 5 / 6 Jun 21st, 2007
Replies: 11
Views: 1,510
Posted By anud18
its the name as well as the caption
Forum: Visual Basic 4 / 5 / 6 Jun 21st, 2007
Replies: 11
Views: 1,510
Posted By anud18
actually sir .....after calling th showform function present in the dll....i want the programme to wait for the user to click on the command button(event)......

in the command_click event i have...
Forum: Visual Basic 4 / 5 / 6 Jun 21st, 2007
Replies: 11
Views: 1,510
Posted By anud18
i tried out the command thing also sir....but it is not working out that ways also ....

its not waiting gor events to happen...
Forum: Visual Basic 4 / 5 / 6 Jun 20th, 2007
Replies: 11
Views: 1,510
Posted By anud18
when what becomes activated???....the form or the control event....i couldnt understand
Forum: Visual Basic 4 / 5 / 6 Jun 20th, 2007
Replies: 11
Views: 1,510
Posted By anud18
how do i make the programme wait untill a particular event happens......

i read it on the msdn....that by inserting "App.WaitForEvents" where i wanted to make my programme wait for the event i...
Forum: Visual Basic 4 / 5 / 6 Jun 19th, 2007
Replies: 36
Views: 4,843
Posted By anud18
the form stopped on the screen amd it allowed me to make entries in the text boxes after doing the above step .......but when i clicked the command button it is showing "automation error"...
Forum: Visual Basic 4 / 5 / 6 Jun 19th, 2007
Replies: 36
Views: 4,843
Posted By anud18
ya this is also done in the dll itself
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
in the dll
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
Global MyDll As New dll.Class1

main()

first i call the initialize function to initialize the combo-boxes present in the form(created in the dll) with some values(in 1 combo-box its the...
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
and this function is defined in the project that is calling the dll
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
KRN_StartForm
This is the function which i want to run on clicking the command button
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
MyDll.ShowForm
this was the function i used to show my form ...
showform is defined in the dll as follws...

Public Function ShowForm() As Boolean


Form1.Show

End Function
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
not working sir
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
havnt been able to sort out the problem still...
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
its still not working.....i think its a case of making a thread wait.....can you please give an example wherein i can make a particular thread untill a particular event is fired....
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
ya i created the showform function in the dll's class.....after calling the showform function i want the execution to proceed only after the command button has been clicked....
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
yes sir the form along with the command button is visible...
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
sorry veena but i am not been able to understand you....
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
actually i have created a login authentication form a dll where there is this command botton....
and i am i am including this dll in my project....i want only if the user
presses the command...
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
thanks veena,

But the problem is still not sorted out.....can u please tell me how to make the programme wait until the commandbutton_click event has been fired.....
Forum: Visual Basic 4 / 5 / 6 Jun 18th, 2007
Replies: 36
Views: 4,843
Posted By anud18
actually....how do i make the code written in my project wait until the command button in the module has been clicked......


i tried setting the boolean variable true when the command button is...
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 36
Views: 4,843
Posted By anud18
actually to check in my project whether a command button present in my dll has been clicked and based on that i have to do further processing......
is there any way out...
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 36
Views: 4,843
Posted By anud18
is there anyway by which i can check whether a command button has been clicked or not...
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
thanks a lot to you sir and veena.....what veena told me worked out to be absolutely fine.....i was able to access all the functions and sub-routines declared in my dll by using dim .....
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
show form is there sir......its not indented properly....but it is there
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
[code]Public Function Initialize(sUserName As String, sPassword As String)
CboUserName.AddItem (sUserName)
CboPassword.AddItem (sPassword)
End Function
Public Function ShowForm() As Boolean
...
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
actually what i did was .....in the project properties under the debugging tag....i specified the start programme as the exe file of my project....and then when i am running the dll....its showing...
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
tried it but it is not working.....still showing the error "cannot find entry point for function in the dll"....
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
thanx veena .....but when i am trying to browse and add the dll refrence in my new project....it doesnt show up in the available refrences .....it means that it is not bein added .....
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
i am sorry sir....but i could not actually get how to specifically specify the entry point....
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2007
Replies: 22
Views: 2,804
Posted By anud18
i opened up the activeX DLL and did the coding inside that....then afterwards there was a option in the file menu -"make enc.dll" which i made and saved it in the same folder as the project....
...
Forum: Visual Basic 4 / 5 / 6 Jun 14th, 2007
Replies: 22
Views: 2,804
Posted By anud18
hi.......can anyone tell me how do i call a subroutine created inside my dll from another project

example:-

i hv created a dll having a sub-routine named "initialize" in it .....when i call...
Forum: Visual Basic 4 / 5 / 6 Jun 13th, 2007
Replies: 15
Views: 1,802
Posted By anud18
i was able to do it sir by the way u told me....i.e coding as formx.show......and thanx a lot for your helpful guidance
Forum: Visual Basic 4 / 5 / 6 Jun 12th, 2007
Replies: 15
Views: 1,802
Posted By anud18
i just worked outhe problem by using your way of inserting message boxes.....and wow it worked out to be absolutely fine.....thanks a lot for giving this brilliant idea...
Forum: Visual Basic 4 / 5 / 6 Jun 12th, 2007
Replies: 15
Views: 1,802
Posted By anud18
i am thankful to you sir for taking such interest.....i have tried
Formx.Show vbModel also but its not working out
Forum: Visual Basic 4 / 5 / 6 Jun 11th, 2007
Replies: 15
Views: 1,802
Posted By anud18
i have tried the above given procedure also....but the problem still remains the same ...that is the form which i am calling from the module isnt holding on the screen......the control immediately...
Forum: Visual Basic 4 / 5 / 6 Jun 11th, 2007
Replies: 15
Views: 1,802
Posted By anud18
thank you so much sir.....it almost worked out...but it is showing an error "object required " alongside when the form is opened.....when i try to debug it...it takes the control in the form where i...
Forum: Visual Basic 4 / 5 / 6 Jun 11th, 2007
Replies: 15
Views: 1,802
Posted By anud18
hi....actually wen i am loading a form from the module.....its loaded but its not holding on to the screen and it is performing the actions listed in the form load procedure......can anyone tell me...
Forum: Visual Basic 4 / 5 / 6 Jun 8th, 2007
Replies: 3
Views: 2,375
Posted By anud18
how can i load a form from a module created in d same project??...........What function should i use to do so???
Showing results 1 to 40 of 52

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC