Hi Paul, Wish U happy b'day!!! :rose::rose::rose: Best Regards, Vilas Shewale ;)
Villly
Posts
-
Happy birthday to Paul! -
VB interviewHi, Try these links. 1> http://www.mathtools.net/Learning/FAQs/Visual\_Basic/ 2> http://visualbasic.about.com/cs/visualbasicfaq/ 3> http://www.experts-exchange.com/Programming/Programming\_Languages/Visual\_Basic/ If this not sufficient for you. Query google with "Visual Basic questins and answers" or "Visual Basic for beginners" Best Regards, Vilas Shewale ;)
-
Windows Message QueueHi, Try following links. I hope you get want you want. 1> http://www.codeproject.com/dialog/queue.asp 2> http://www.pcprogramming.com/DDNUG/VCSHARP/RemotingNotes.htm 3> http://www.openip.org/oa/notes\_gem.txt etc. You can query in google with "Windows Message Queue". You will find number of sites with brief explanation. Best Regards, Vilas Shewale ;)
-
How to check if file existe?Hi, Just use "Dir" command in VB to check it's existance. Say, if Dir("filename") then '' Task to do if file exists end if It will retrun True if exists or False if file is not there on the mentioned path. You can use other parameters like vbDirectory, vbSystemFile etc. to check file or folder property. Best Regards, Vilas Shewale ;)
-
Direct navigation to desired pageHey Paul, I am waiting to hear from you on my suggestion. Any comments?? Are you thinking over my suggestion? Best Regards, Vilas Shewale ;)
-
Windows Comman Taks in VB.NETHi, I didn't get the thing what you are trying to explain to me. Could you please send me some sample how i shall achieve the same? I shall wait for your sample code. Thank in advance. Best regards, Vilas Shewale ;)
-
Windows Comman Taks in VB.NETHi, I am facing the same problem again but in different way now. I subclass "SysListView32" object to get the messages. It's working for other messages like mouse move, mouse over, etc. But I am not able to trap DELETE notofication in the same object. MSDN help says the WM_DELETEITEM message is sent to the owner of a list box or combo box when the list box or combo box is destroyed or when items are removed by the LB_DELETESTRING, LB_RESETCONTENT, CB_DELETESTRING, or CB_RESETCONTENT message. So I try to trap the same message in my code. I am not able to get the DELETE notification by "SysListView32" object. Could you help me in the same context? I want a message which will trap the DELETE message as soon as user will click on "Right click\Delete" or "Delete this file" from the left panel of Web Browser control. Thank you very much for your help. I look forward to hear from you very soon. Best regards, Vilas Shewale :)
-
Direct navigation to desired pageHi Nish, How are you? Hope you are fine there. Missing India? By the way, thank you very much for supporting my suggestion. Best regards, Vilas Shewale ;)
-
Windows Comman Taks in VB.NETHi, Thank you very much for your help. It's working properly. I subclass "SysListView32" object of Web Browser Control and getting the messages from it throught VB.NET's "System.Windows.Forms.NativeWindow". Thank you very much for your help. Best regards, Vilas Shewale ;)
-
Windows Comman Taks in VB.NETHi, Did you get anything regarding my problem? I'm waiting for your reply. Best regards, Vilas Shewale ;)
-
Direct navigation to desired pageI've wanted this many times Thanx a lot for supporting my suggestion. Best regards, Vilas Shewale ;)
-
Direct navigation to desired pageBut how do you know which page number to type in? If i have small idea that a particular post is after say 50 threads then i'll skip 2 pages after the current page. Right. Or if i know the last page searched for in last session, i can directly put the desired page number and can continue reading the posts after that. Right??? Instead of clicking Last and Prev again and again user can navigate throught pages easily by this option. I would like to hear positive responce from you. Thank you. Best regards, Vilas Shewale ;)
-
Direct navigation to desired pageHello, Can you put "Goto Page No" option to navigate to a particular page / post; so that we can directly navigate to desired page / post. It takes long time to navigate for particular post especially when net speed is really bad like i have. Do you all agree with this with my suggestion? Best regards, Vilas Shewale ;)
-
Crash IE in one line of htmlHi, Mind blowing. ;) I like these fundu posting. Keep it up. Vilas Shewale
-
uNo, u. then me. right? Vilas Shewale
-
Windows Comman Taks in VB.NETHi, Thank for your most earliest reply i ever had. ;) I shall post the code to your email account. Please do the needful. And i offer my deepest condolence for the crash of the machine. ;) Best regards, Vilas Shewale
-
Windows Comman Taks in VB.NETHi Everybody, I need your help regarding Subclassing in VB.NET. I am developing a project in which I am using Web Browser Control as Winodws Explorer. Means I am providing most of the functionalities of Windows Explorer in my Web Browser control through my application. :) I would like to SubClass the Web Browser Control and want to get the DELETE notification when user clicks on a button provided by interface. Or when user Right Click and chooses the "Delete" option from popup menu provided by Windows. Or, in Windows XP, user clicks the left panel entry "Delete this file" option. I try to Subclass the Web Browser Control and try to get the DELETE notification. But application is not stable and also I am not able to trap the notification. :confused: While debuging or EXE of the application crashes as soon as I try to enter the mouse in the Web Browser Control. :wtf: Please, could you help me in this context? I shall be very thankful to you for the same. Waiting for you early reply. Best regards, Vilas Shewale :)
-
Web Browser control as Windows ExplorerHi Everybody, I am using Web Browser control in my application which acts as Windows Explorer in my aplication. Web Browser control has inbuild side panel to show the functionalities avaliable in Menu. You can exprience the same by browsing special folders like Control Panel, My Documents in Windows XP. Now, the problem lies here in this inbuild functionality. I want to modify the options of the side panel. Here i don't want to display "Publish this file to the web" and "Email this file" when user selects a file from Web Browser control. :confused: Please do the needful. Thank you everybody. I look forward for your immidiate help. Best regards, Vilas Shewale :)
-
Hiding columns in ListViewHello, There is no other way to do it. You implemented is right thing. I just have a additional to tell you. Assign ColumnResize value to none means one can not resize the column. Then while filling data in ListView calculate the length of the record which you are filling currently. Then assign the record lenght value to the column width. By doing this, you will able to see full length data in your ListView without facing problem. Example for consideration: Dim iLenght as Integer ' Lenght of the record Dim iPrevMaxLength as Integer ' Length of previous record iLength = 0 iPrevMaxLength = 0 While(rs.EOF != NULL) 'Todo part ..... ..... ..... ..... iLength = len(rs.CurrentRecord) if iLength > iPrevLength then ListView.Column(index).width = iLength iPrevMaxLength = iLength end if ' Todo part ..... ..... ..... ..... Wend Let me know if this works or not. Regards, Vilas Shewale ;)
-
Creating a dateHello, Could you explain your problem in brief? like what exactly you want by providing us an example. Regards, Vilas Shewale ;)