Re: what's the correct way of learning programming? Programming by tinstaafl I would suggest first off is examining exactly what you want to do with your programming. There are a great many areas to explore and most languages excel in only some of those areas. If your interest is as a hobby, you could do far worse than vb.net. Not only is it a robust, plain language coding language it also includes a WYSIWYG gui editor … VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho How use and declare CopyMemory() API function VB2010? Re: VB2010: how use CopyMemory() API function? Programming Software Development by rproffitt Take a look at the example at https://www.codeproject.com/Articles/8641/Equivalent-of-CopyMemory-in-NET Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho that link\tutorial have some errors: VB2010 don't have the 'any' type Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho correct me: the Bitmaps.lockbits() and Bitmaps.unlockbits(), for change the pixels(all pixels), are more faster or like DIB's speed or more slow? Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho understood ;) thanks for all... using the VB2010 is best use GDI+... if i need change all pixels, we must use lockbits() on a Bitmap Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 I am working on an exercise from Google's Python class dealing with popular baby names. I have the program running properly when using only one filename, but when I try to use the wildcard to get all files with baby####.html files I get differing errors every time I run the program. Here is the problem code: matches = re.findall('<… Re: how convert cur images to image? Programming Software Development by cambalinho damn i can't edit.. it's VB2010 and not VB6... but the tags is vb.net... i'm sorry Re: how to convert from vb.net to C# ? Programming Software Development by Alilou_2 The tool is paid, but you can get its free demo license on our website https://www.ispirer.com/application-conversion/visual-basic-to-cs-migration Re: how to convert from vb.net to C# ? Programming Software Development by Emanuil23 It seems to me with the application of the programs there will be a lot of mistakes. So the best solution is to do it manually. Get error please help me the server threw an exception. Programming Software Development by JModak The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)) My Code is Private Function GetXlUsedRange(ByVal filePath As String) As Object(,) Dim xlApp As Excel.Application Dim xlWorkbooks As Excel.Workbooks Dim xlWorkbook As Excel.Workbook Dim xlSheets As… Re: Get error please help me the server threw an exception. Programming Software Development by pritaeas At what line exactly did the exception trigger? Re: Get error please help me the server threw an exception. Programming Software Development by tinstaafl Have you tried looking at the answers on this page? [Click Here](https://stackoverflow.com/questions/973206/what-causes-error-hresult-0x80010105-rpc-e-serverfault) Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 After I posted this question I noticed that I was missing the raw string indicator and the capture group enclosing parenthesis on the findall, which explains the subscripting error. So, hold off on the answers for now. I'm still having other issues with multiple file runs, though. Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 Finished the assignment and was able to work out the bugs I was encountering. In addition to the issues I mentioned in my last reply, I had several instances of not indenting properly so that statements like exit() were not executing because their indention made them part of an if statement. vb Programming Software Development by tauseef300 vb project on buzzer Re: VB Programming Software Development by Errods VB is Simple programming kind of a Legacy Unmanaged........... VB.net is Object Oriented and Managed VB.NET 2008 - Get Desktop Icons Text Width & Text Height Programming Software Development by dxmedia VB.NET 2008 - Get Desktop Icons Text Width & Text Height I am developing an application in VB.NET 2008, in which I try to get Desktop Icons Text Width & Text Height. So far I have obtained all desktop icons positions, but I really can't figure by myself how to get Desktop Icons Text Width & Text Height. Here is the VB.NET … VB.NET takes the input from user Programming Software Development by mannuvashishta VB.NET takes the input from user like network address and port number and check it check it, the entered IP address and port number are valid or not as well as check the enter digit how many digits are entered in input box. Some one who knows please reply me. Thank you vb.net 2008 sql server connection Programming Software Development by pisces20 vb.net sql server connection Re: VB.NET 2008 The type initializer for ... threw an exception Programming Software Development by lolafuertes ….NET does not istantiates the forms by default as does VB6. So probably when you [ICODE]Public FormStores As frmMain = frmMain… Re: VB no Yield Return? Programming Software Development by ddanbe ? VB has evolved to C# with somewhat different syntax. It is also called VB.NET instead of just VB, VB4-5-6 or VBA. So yield exists. [See here](https://msdn.microsoft.com/en-us/library/hh156729.aspx). Re: VB and Access Programming Software Development by Comatose VB can handle it by itself.... and would be easier than learnng the SQL Query's required to generate the kind of data and report that you want to do.... I will say to each his own. How I would do it, is I would build a VB program to handle all the data until the report is generated.... after the daily report is done, THEN add the daily record into… Re: VB.NET equivalent of following inline function in C# Programming Software Development by sknake "VB.NET doesn't support multi-statement lambda expressions or anonymous methods." [url]http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/9f6733c3-32ad-4b84-b393-029913e7243a[/url] As adatapost advised, use AddHandler. Re: VB.Net Programming Software Development by nicolestar VB is the old version of VB.net Re: Vb.net Programming Software Development by nanosani vb .net step by step by Michael Halvorson is a good book to get started. I just started learning vb.net Re: vb.net Programming Software Development by kvprajapati VB.NET Language reference of MSDN is my choice. Re: VB Help Programming Software Development by stats79 VB Express Vb.net - Games/Sim Projectile Motion Programming Software Development by oussama_1 VB.Net never meant for games! it's more recommended for software developement, but hey why not have some fun. If anyone out there is looking to create an Angry Birds Game-like or a Simulator for throwing an object, you've come to the right place, this code will give you great start/push to build your own app. #**Trajectory**# ![… Re: VB.NET equivalent of following inline function in C# Programming Software Development by sknake VB.NET doesn't support anonymous delegates like C# does. Just break the code out to another function: [code] Private Sub LookForUpdates() Dim timerThreadStart As New System.Threading.ThreadStart(AddressOf LookForUpdatesDelegate) Dim timerThread As New System.Threading.Thread(timerThreadStart) timerThread.Start() End Sub Private …