Re: Differential Directory, indexing method Programming Software Development by xrjf I've just made an update because some records weren't being added properly. The issue was that the form didn't take into account that the register field (in the call to DiDi) is passed by reference. Re: Differential Directory, indexing method Programming Software Development by noahevans This is a brilliant explanation of how Differential Directory (DiDi) indexing works — very efficient and elegant. The idea of storing only the first differing bit between keys reminds me of how we optimize systems for speed and memory, much like how some tech repair services streamline diagnostics. At FixnVibe, our approach to mobile phone … Re: How to open an Excel Document in VB.NET Programming Software Development by Pelorus_1 A Microsoft Excel document can be opened in VB.NET using the Microsoft.Office.Interop.Excel library. Using Workbooks.Open(), open the workbook, and then display the Excel window. Reference the Excel COM object in your project. Re: How to open an Excel Document in VB.NET Programming Software Development by JamesMichaelm I see it's been a while since you posted, but I'm curious if anyone here has tried using the Open XML SDK instead of Interop or OleDb for reading Excel files. I found it faster and doesn't require Excel to be installed, though it can be more complex for writing. Wondering how others handle big Excel files or ones with tricky formatting? Re: How to open an Excel Document in VB.NET Programming Software Development by PitSterw I've worked on something similar and found that using Microsoft.Office.Interop.Excel lets you open the file and loop through cells easily. Differential Directory, indexing method Programming Software Development by xrjf **Features:** * Retrieves the differentiating bit of a key with respect to the previous one and stores only this position in the index. * With at most one single disk read, assuming the index is in memory, it determines whether the key exists or not. * The index is always sorted and therefore requires no reorganization. * Performance is … Re: Differential Directory, indexing method Programming Software Development by rproffitt DiDi appears to be some China based UBER service but then again I can't find a question or much else to discuss here. Re: Differential Directory, indexing method Programming Software Development by xrjf About DiDi DiDi (Differential Directory) was originally developed as part of my thesis project in the early 1990s. The name bears no relation to the more recent Chinese ride-sharing company. At the time, DiDi was a novel approach within its academic context, but a change in legislation unfortunately led to the closure of the school and the … Re: Differential Directory, indexing method Programming Software Development by xrjf For example, as Donald Knuth points out in The Art of Computer Programming, the theoretical lower bound for comparison-based sorting algorithms is K × log₂(N). I developed a very simple method that matches this performance. However, DiDi goes far beyond: its performance is proportional to K × (maximum key length), regardless of the number of … Re: Differential Directory, indexing method Programming Software Development by xrjf As an illustration, consider the theoretical lower bound for comparison-based sorting, as stated by Donald Knuth in The Art of Computer Programming: K × log₂(N). I developed a simple method that matches this limit. For example, to sort the list {2, 5, 7, 1, 4, 3, 8, 6}: Sort pairs: (2, 5) → [1] (1, 7) → [2] (3, 4) → [3] (6, 8) → [4] Merge… Re: Differential Directory, indexing method Programming Software Development by xrjf "Just to clarify a previous mistake: the efficiency should be K × N × log₂(N), not K × log₂(N) as I initially wrote." Re: how to get back visual basic 6 project again on coding again Programming by Syed Zubair Ali Due to installation of windows 11 harddisk were formatted and entire project was saved in C drive. Exe. back up was stored in USB and desktop and working well, however, to update more i have need my project in design mode of vb where I can add tools and writing more code. I have run vb-decompliler.org where I had recieved my 90% database of design… Re: how to get back visual basic 6 project again on coding again Programming by Salem > my hard disk has been damaged, and entire project has been collapsed. Did the disk just "stop working" one day, or has it been rotting slowly over time? Or does "damaged" mean "I deleted the source folder". If that happened yesterday, you might have a chance. If that was months ago, most of it is probably … What are the key components of ServiceNow Managed Services? Programming Software Development by Suheb What are the key components of ServiceNow Managed Services? Re: What are the key components of ServiceNow Managed Services? Programming Software Development by Salem https://duckduckgo.com/?q=key+components+of+ServiceNow+Managed+Services&t=newext&atb=v296-1&ia=web That'll be $2M, thanks. 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 - Regular Expression Tester Programming by Reverend Jim vb.Net - Regular Expression Tester Every now and then I find another use for a regular expression. For those not familiar with regular expressions, they can be as cryptic to read as strings of Greek letters. Simply put, regular expressions are just patterns. If you've ever used the DOS command shell `dir` command then you have likely used … 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 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 2008 The type initializer for ... threw an exception Programming Software Development by lolafuertes VB.NET does not istantiates the forms by default as does VB6. So probably when you [ICODE]Public FormStores As frmMain = frmMain[/ICODE] you are expecting that frmMain already exist, but does not. I would suggest some code like this to instantiate the child form: [CODE]Public FormStores As frmMain Public Sub New (ref formMain) … 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 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.NET Programming Software Development by yosra22 VB.NET salut je cherche le code du bouton "chercher" (recherche des caractéristique d'un client par exemple selon son numero de CIN) Re: VB Programming Software Development by Jx_Man [QUOTE]I know vb.net not vb[/QUOTE] vb.net is vb. [QUOTE]I want to ask is there so much difference b/w vb & Vb.Net.[/QUOTE] not much different, you will find about encapsulation in vb.net, you cannot access class directly in .net. others think is same, if you good in vb 6 there are none problem to migrate.