There is a useful tool within VS 2008 (VB at least) which may help to point you in the right direction in understanding how to convert VB6 code to VB Net.
Open a project in VB NET 2008 (express version will do), Open a form and view source code. Then, select Tools -> Upgrade Visual Basic 6...
You can reset your page margins Top, Bottom, Left, Right to 0cm and design your publication right to the edges of your paper size. Whether or not it will print like that will, of course, depend on the capabilities of your printer.
Whilst MS Word has the facility to create and manage a table of contents. MS Publisher does not. You have to mannually maintain your table of contents entry and the page number
You could try placing your subforms on seperate pages of a Tab Control then manipulate the visible property and/or active page of the tab control as appropriate
The only tool you NEED, to develop an ASP based website, is a text editor, such as notepad.exe. However, Dreamweaver provides for nice syntax colouring, as does the MS Visual Studio suite of programs. However, such software can prove expensive!
You may be better off, in the short term...
Thanx again. No offence taken! Not much code to display, a simple DoCmd.OpenReport.... statement. The report itself is nothing special, NO subforms, No VBA Code. So, you see my problem, not much to try changing!
I understand your point about Access 2003
Regards
TS
Thanks for your comments IGPCS, I must admit though, I've found MS Access 2000 brilliant, over a number of years usage. I think I can honestly say that this problem, crashing reports! is the only real problem I've experienced with Access itself, so I'd love to get it sorted. There must be an...
Have a problem contolling reports in MS Access 2000 (ver 9.0.6926 SP-3) through VBA.
When attempting to open reports in vba using...
DoCmd.OpenReport stDocName, acPreview, , strWhere
...Sometimes the report(s) open, sometimes they don't and, more importantly, sometimes they cause a Fatal...
On_Load ...ing the form, why not determine the current month and then disable all the controls on your form you do not want your users to be able to make an entry in?
Might help to check to make sure your comparing like with like...
...
if datevalue(workdate) = datevalue(format(rshol!HOLIDAY, "General Date")) then
...
Using datevalue() has the advantage of ignoring any time values that may be included in your tables date field(s)
Re: Win XP Pro IIS5.1 PHP5 MySQL5.
New to PHP/MySQL. Normally develop in ASP, MS Access/SQL
Something I frequently find myself doing in ASP is displaying paged data, from a database, on a webpage, by using the ADO Recordset object. I've not seen an obvious way to do this in PHP with data from a...
I'm sorry, I thought I had!
There is NO post merge processing.
The user is entering the textual content into an Access database, this content is LATER to be merged into personalised Word documents.
The user needs to be able to format the text they enter, into the Access database, as described...
All true but Chrisma asked how to split an existing date into three component parts, to present each part seperately in his forms <input> fields, so the date could be edited?
'****************************************************
' Function - doCaps - Capitalisation of Text
'****************************************************
Function doCaps (mytxt, mymode)
dim tbuff
dim nBuff
dim tchar
dim tAscii
dim n
nBuff = ""
tbuff = trim(mytxt)
if mymode = "First" then...
Value for day...
<%
=right(("00" & cstr(day(session("start_date")))),2)
%>
Value for month...
<%
=right(("00" & cstr(month(session("start_date")))),2)
%>
Value for year...
<%
= cstr(year(session("start_date")))
%>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.