Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
vb.netcode
- Page 1
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
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: Differential Directory, indexing method
Programming
Software Development
2 Days Ago
by xrjf
Just a quick update for anyone interested: I have revisited and significantly improved the code, aiming for a more professional structure and better performance. The updated version avoids freezing the UI during long operations and follows more robust programming practices. If you’d like to see DiDi in action, there is also a video …
Re: How to open an Excel Document in VB.NET
Programming
Software Development
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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: Differential Directory, indexing method
Programming
Software Development
1 Week Ago
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: how to get back visual basic 6 project again on coding again
Programming
2 Months Ago
by Syed Zubair Ali
… 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…
Re: how to get back visual basic 6 project again on coding again
Programming
2 Months Ago
by Salem
… business. Maybe a tool like this can help https://www.
vb
-decompiler.org/ You will not get back your source code…
What are the key components of ServiceNow Managed Services?
Programming
Software Development
1 Month Ago
by Suheb
What are the key components of ServiceNow Managed Services?
Re: What are the key components of ServiceNow Managed Services?
Programming
Software Development
1 Month Ago
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.NET 2008 - Get Desktop Icons Text Width & Text Height
Programming
Software Development
14 Years Ago
by dxmedia
… Width & Text Height I am developing an application in
VB
.NET 2008, in which I try to get Desktop Icons… Desktop Icons Text Width & Text Height. Here is the
VB
.NET 2008 code that I use: [CODE] Imports System.Runtime…
vb.Net - Regular Expression Tester
Programming
6 Years Ago
by Reverend Jim
vb
.Net - Regular Expression Tester Every now and then I find …/edit), but it is free. The code was written in
vb
.Net 2017. The entire project is attached as a zip…
VB.NET takes the input from user
Programming
Software Development
17 Years Ago
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
15 Years Ago
by pisces20
vb
.net sql server connection
vb
Programming
Software Development
12 Years Ago
by tauseef300
vb
project on buzzer
Vb.net - Games/Sim Projectile Motion
Programming
Software Development
10 Years Ago
by oussama_1
VB
.Net never meant for games! it's more recommended for …
Re: VB
Programming
Software Development
17 Years Ago
by Errods
VB
is Simple programming kind of a Legacy Unmanaged...........
VB
.net is Object Oriented and Managed
Re: VB.NET 2008 The type initializer for ... threw an exception
Programming
Software Development
13 Years Ago
by lolafuertes
VB
.NET does not istantiates the forms by default as does …
Re: VB no Yield Return?
Programming
Software Development
9 Years Ago
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
18 Years Ago
by Comatose
VB
can handle it by itself.... and would be easier than …. How I would do it, is I would build a
VB
program to handle all the data until the report is… you said, they input all the amounts recieved, and the
vb
program can simply tally that up, (and store all the…
Re: VB.Net
Programming
Software Development
11 Years Ago
by nicolestar
VB
is the old version of
VB
.net
Re: Vb.net
Programming
Software Development
20 Years Ago
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
15 Years Ago
by kvprajapati
VB
.NET Language reference of MSDN is my choice.
Re: VB.NET
Programming
Software Development
13 Years Ago
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)
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC