Update a field in multiple tables
Hey all, We have a database with a number of tables that have a field that needs updating. The field name is the same across all tables and the value we need to update to will also be the same across...
View ArticleSQL Server 2018 - String Comparisons with Whitespace
I recently discovered the following will return a 1 for the TrailingWhitespace column: Code: SELECT CASE WHEN ' leading whitespace' = 'leading whitespace' THEN 1 ELSE 0 END AS...
View ArticleLegacy Conversion Fun
I am currently in the process of converting a legacy application from VB6 (originally written in VB3 and updated until VB6) and just for the record... I hate spaghetti code. Right now I am going...
View ArticleVB6: how can i speed up my draw pixel function DIB's?
heres my actual function for draw between line points: Code: Friend Sub DrawImageRectanglePoints(DestinationHDC As Long, Points() As Position3D, WorldSize As Size3D, Optional ByVal Opacity As Long =...
View ArticleVB6/VBA MS Access Developer needed - Remote work
Immediate opening for highly experienced VB6/VBA developer to rebuild existing MS Access database to a fully OO TDD, multi layer architected solution. Successful candidates will have min 5yrs...
View ArticleHow do you learn Visual Basic on the internet?
I'm looking everywhere for up to date Visual Basic tutorials and learning resources. I can hardly find anything outside of tutorials of the very basic syntax. Very little in the way of actually showing...
View ArticleStandard code for connecting sql server with vb.net and record functions ?
Dear All I searched the web for a standard code to link between SQL server and vb.net and record functions like insert, update and delete ... each time I find a different way of code, also in...
View ArticleQuestion about OpenDB Sqlite in RC5 / RC6
Is there a way to open a Database in exclusive mode (as in Access) ... ? If I want to guarantee this, should I do a separate control? -- Thiago
View ArticleLink Error 1106 when compiling
All of a sudden, after my last few changes to my vb6 program, I can no longer compile it. Instead, I receive the error: "fatal error LNK1106: invalid file or disk full: cannot seek to 0x1299a000" My...
View Articlewhen i enter the quantity nothing happend and can't add the data in database
this is my first code private void GetTransno() { try { string sdate = DateTime.Now.ToString("yyyyMMdd"); string transno; int count; cn.Open(); cm = new SqlCommand("select top 1 transno from tblCart...
View Article[RESOLVED] Excel: Get Holidays from opm.oov using html
The opm.gov website has list of US federal holidays that I would like to import into Excel. I know that I should be able to use the 'From Web' button on the Data tab, but I have a very old browser and...
View ArticleVB6- how we get the array size?
how can i get an array size without using UBound() and LBound()?
View ArticleHow can detect monitor Insertion and/or Removal?
I need to read the EDID when I change the monitor,Is there a way to detect the monitor plug-in device? I have searched the forum, it seems that there are Sysinfo or WM_DEVICECHANGE methods that can be...
View ArticleConsole Window 3D Engine (C++)
Who needs DirectX when you can have a simple console window do all the 3D for ya. :bigyello: C++ Code: #define NOMINMAX #define WIN32_LEAN_AND_MEAN #include <Windows.h> #include <iostream>...
View ArticleDatabase at domain hosting vs database servers....
Hi, I have a domain name (www.xxxx.com). This domain is being hosted by a hosting company and there is a simple static web site at this domain to show my products... I am now trying to upgrade my web...
View Article[RESOLVED] Problem with SQlite query
Hello everyone. Hello Olaf I need help from an expert in SQlite and VbRichClient I'm running this query from the client side but it seems does't respond correctly. Code: StrSql = "Select * From tbl1"...
View ArticleDo you all worry about obfuscating a password in an AJAX POSt over SSL?
Ok - setup - when creating a web app over an SSL connection to an IIS server... If you are doing a LOGIN page, and want to send the username and password in an AJAX POST to the server, how do you all...
View Article[RESOLVED] Convert latitude and longitude to N-Vecotr
Hi, As a matter of fact i would like make enterpolation between latitudes and longitudes. When i search solutions i saw advice first convert latitude and longitude to n-vector and then make...
View ArticleCouin, from France
Hi all :) I'm Couin, from France (so , sorry for my poor english ahah). I'm a small Visual Basic 6 user (built a planned heaters manager from a existing code, built a software for work, which...
View ArticleVS 2019 Check Folder Structure from bottom-up
Hi everybody, I'm working on a tool that creates a whole folder structure for every company project. i.e. \customer name\location - country\site number I got thus far, that the tool creates the correct...
View Article