Renaud Bompuis

3,964
Reputation
488 views

Registered User

Name Renaud Bompuis
Member for 1 year
Seen yesterday
Website
Location HK
Age 38
A foreigner in a foreign land, I eke a living trying to develop quality software.
I'm keen to explore new technologies to get an idea about what's coming but sometimes you don't get to choose what you have to work with ;-(
Nov
21
accepted Problems with More than 1 Left joins in MSAccess
Sep
17
awarded  Nice Answer
Sep
11
answered Adding relations to an Access Database.
Sep
9
answered Proper way to check if an unbound control has a value
Sep
4
accepted Event when Word 2007 changes the Theme
Sep
4
answered Event when Word 2007 changes the Theme
Sep
4
asked Catching event when a link is clicked in a Textbox displaying richtext
Sep
4
accepted Inserting NULL in an nvarchar fails in MSAccess
Sep
3
comment How to copy a table from one database to other database?
You don't mention if you need just the table schema to be copied or the table schema and its data as well.
Sep
3
comment ms-access save query result in a string
You have to clarify your question: do you need headers? what separates the returned fields values? should the columns be of fixed width or not? What separates rows? Is it for display or for saving to a file?
Sep
3
revised ms-access save query result in a string
made title more relevant
Sep
1
awarded  Yearling
Aug
26
accepted Why should I use SQLite over a Jet database
Aug
26
comment Slow MSAccess disk writing
Just a clarification: moving to SQL Server Express is the only free option but it won't really solve the database size limit issue as SQL Server Express is limited to 4GB.
Aug
25
accepted What is the use of Indexers?
Jul
12
accepted MS Access 2003 - Simple value input into a text box from clicking label boxes
Jul
9
answered MDE Access decrypt JDBC
Jul
9
revised Problems with More than 1 Left joins in MSAccess
Cleaned up formatting and added linked to original question.
Jul
9
revised MS Access 2003 - Simple value input into a text box from clicking label boxes
spelling and formatting
Jul
9
answered MS Access 2003 - Simple value input into a text box from clicking label boxes
Jul
9
comment Best way to prompt for report parameters in microsoft access
Additional comment on these dates: never feed unformatted dates directly into the SQL. If your locale doesn't use dates in the US format, then you're going to get some nasty surprises. I always use a DateToSQL() function that converts a given date into a canonical string that can be fed into raw SQL safely.
Jul
8
revised extract fileName using Regex
typos + formatting
Jul
8
answered How to show “Open File” Dialog in Access 2007 VBA?
Jul
3
awarded  Nice Question
Jun
30
comment Problems with More than 1 Left joins in MSAccess
Maybe I'm missing something but multiple LEFT JOIN aren't properly supported in the QBE since you can't really set the order in which the joins are operated. I find that multiple joins tend to end-up in a mess and rarely give me what I expect. I usually always resort to SQL for more complex queries, gives me more control over the way the query is constructed.
Jun
30
answered Problems with More than 1 Left joins in MSAccess
Jun
26
comment HAProxy and “sharding”
You should try to ask this on serverfault.com as it is more of an IT question than a programming one. You'll probably have more luck there.
Jun
21
comment Compare Two Arrays Of Different Lengths and Show Differences
You need to give a bit more details: are the arrays pre-sorted? are they arbitrarily very large? what are the other constraints like memory usage and speed? Are you looking for the shortest possible bit of code? the most simple? the most efficient in terms of resources?
Jun
21
revised Why extremely occasionally will one of bof/eof be true for a new non-empty recordset
Added code following edit of original question
Jun
21
revised Why extremely occasionally will one of bof/eof be true for a new non-empty recordset
Reformatted code and some text for legibility.
Jun
21
revised Why extremely occasionally will one of bof/eof be true for a new non-empty recordset
remove final hanging sentence, don't remember what I wanted to say ;-(; added 56 characters in body
Jun
19
answered Why extremely occasionally will one of bof/eof be true for a new non-empty recordset
Jun
19
answered How Can I Remove Access Db’s temporary ldb file
Jun
11
answered Inserting NULL in an nvarchar fails in MSAccess
Jun
11
comment Inserting NULL in an nvarchar fails in MSAccess
Hi Aaron. The update doesn't even reach the profiler, so it's clearly an ODBC or Access issue, just before the data is sent. I have updated my investigation results above.
Jun
11
revised Inserting NULL in an nvarchar fails in MSAccess
more tests
Jun
11
comment Inserting NULL in an nvarchar fails in MSAccess
All other fields in the table allow Null, apart from the Identity field used as primary key. What I don't get is that if the case was related to the table definition, then it wouldn't work in the SQL Server management studio console either.
Jun
11
comment Inserting NULL in an nvarchar fails in MSAccess
No. I extracted the code you see in the question and that's the only thing in the Access application, no forms, no other table trying to access the data, no concurrency issue.
Jun
11
asked Inserting NULL in an nvarchar fails in MSAccess
Jun
6
comment How to check if CURRENT event is not during the OPEN event of form
No need to add anything when the form is closing. Once it is closed the object is normally destroyed. If you re-open it again, new form object will be created with all the values initialised. Variables that belong to a form die with it.
Jun
5
answered How to check if CURRENT event is not during the OPEN event of form
Jun
5
comment How to check if CURRENT event is not during the OPEN event of form
That's the whole purpose of the OnCurrent event: it's called whenever you move to a new record. OnLoad event is only called once once the form is open.