-
WScsimms
AskWoody LoungerSeptember 11, 2006 at 1:26 pm in reply to: Wacky Autonumber? (a2k (9.0.6926) SP-3 Jet 4.0 SP-8) #1028107The library Hans posted is the same one I am using.
Carla
-
WScsimms
AskWoody LoungerSeptember 10, 2006 at 8:17 pm in reply to: Wacky Autonumber? (a2k (9.0.6926) SP-3 Jet 4.0 SP-8) #1028038I have a database that does the same thing periodically about once per month. Users don’t want a higher number even though it is just an identifier even if it really does not matter. I have a form I use to reset the seed of the autonumber field to the next highest number in the series. I am not sure where the function came from I found it in an existing database somewhere and it was not credited to anyone.
Here is the function:
Public Function ChangeSeed(strTbl As String, strCol As String, lngSeed As Long) As Boolean
‘You must pass the following variables to this function.
‘strTbl = Table containing autonumber field
‘strCol = Name of the autonumber field
‘lngSeed = Long integer value you want to use for next AutoNumber.Dim cnn As ADODB.Connection
Dim cat As New ADOX.Catalog
Dim col As ADOX.Column‘Set connection and catalog to current database.
Set cnn = CurrentProject.Connection
cat.ActiveConnection = cnnSet col = cat.Tables(strTbl).Columns(strCol)
col.Properties(“Seed”) = lngSeed
cat.Tables(strTbl).Columns.Refresh
If col.Properties(“Seed”) = lngSeed Then
ChangeSeed = True
Else
ChangeSeed = False
End If
Set col = Nothing
Set cat = Nothing
Set cnn = NothingEnd Function
Create a form with a text box called NewHighestNumber and add a command button with the following code on the click event:
If ChangeSeed(“Vessels”, “ID”, NewHighestNumber) Then
MsgBox “Done”
End IfCarla
-
WScsimms
AskWoody LoungerAugust 24, 2006 at 3:24 am in reply to: Start Dates Do Not Change When Predecessor Changed (MSP Pro 2002) #1025979If the successor task has any % complete the task has an actual start date and will not move dynamically.
Carla
-
WScsimms
AskWoody LoungerAugust 23, 2006 at 4:05 pm in reply to: Start Dates Do Not Change When Predecessor Changed (MSP Pro 2002) #1025906If the finish date of a predecessor task is extended then the start date of successor tasks will move forward if the dependancy relationship is Finish to Start, or Start to Start. Exceptions would be if you have constraints applied to the successor tasks. You could look at the Constraint dates table or for the constraint icons in the indicators column. You should not need to manually type dates in the Start or Finish fields for any tasks in the task entry table. If you manually type dates in these fields Project will automatically apply constraints for you. The default constraint applied to all tasks is As Soon As Possible. This means as soon as possible honoring dependancy relationships and any non-working days applied to the Project base calendar, or from a resource calendar for an assigned resource. If you have constraints you do need you can return to the default As Soon As Possible and change the constraint date to NA. Project will not accept N/A.
Carla
-
WScsimms
AskWoody LoungerIf you want to move all uncompleted work to be rescheduled to start from the current date forward then go to Tools, Tracking, Update Project and reschedule all uncompleted work to start after the current date. Remember that when you type a date manually into Project it will interpret that to be close of business on that date. If you want the start of business on the current date you would enter ex. 8/22/06 8:00 AM.
Finish Varience does not look at Actual Finish it looks a the Finish date in the current project so if a task has an actual start and does not yet have an actual finish if the finish of the task has slipped from the baseline date that amount would show in Finish Variance.Carla
-
WScsimms
AskWoody LoungerBefore you reinstall search the PC for a file named Global.mpt and delete all instances before reinstalling. I have seen this problem on reinstall. The location of the Global.mpt is set in the registry and sometimes if it is not located you get errors.
Carla
-
WScsimms
AskWoody LoungerYou might try a compact and repair, or opening the databases through a shortcut with a start in pointing to your System.mdw.
Carla
-
WScsimms
AskWoody Lounger -
WScsimms
AskWoody LoungerThank you for the additional information about “unforseen” complications. There have been more than a few unforseen complications migrating from Access to SQL Server backend databases. We are finding solutions with the help of the lounge and a lot of reasearch.
After a little more trial and error we have found it is the (MAX) designation that is not translating. I think the MAX is new for SQL Server 2005 and I have Access 2002. If you use varchar(MAX) or nvarchar(MAX) you get a text field in the Access front limited to 255 characters. If you use varchar(4000) or nvarchar(4000) the Access front shows a Memo datatype and you can enter up to 4000 characters.
Carla
-
WScsimms
AskWoody LoungerOK, I have found a way to force it to allow more characters by using ntext as the SQL datatype. I am thinking this is a very inefficient datatype as I recall that this datatype is not stored with the table itself. Is there a better solution. I also noted in the Access interface the datatype changes to Memo.
Carla
-
WScsimms
AskWoody LoungerHi Alan,
Yes, that is what I eventually found and you are showing it in the same location. I had to do a bit of looking and I was not sure this was the correct fix, but is is working fine now and showing the correct icons. I also still have my color folders.
Carla
-
WScsimms
AskWoody LoungerI have been using this for a while and really like it, however I inadvertantly changed the icon for a local copy of an Access Database and found it changed globally all the Access default icons , it did not effect the custom shortcut icons for Access databases. It did not let me change the icon back, this just produced an error. I was able to “fix ” the icons back by locating on the Internet the Access key icon and copying and pasting the path to the icon I created with an icon converter from the image I found on the Internet in the browse section of the change icon dialog box, so users beware. I am sure there is a better way to associate icons to programs, but I don’t know how that functionallity works. I found the original path to the icon was to a executable file.
Carla
-
WScsimms
AskWoody LoungerI have not seen this, but perhaps the multiple ghost tasks are showing up from multiple external links to the same task, anotherwords a ghost task is generated for each link? I was able to get what look like duplicate ghost tasks from creating concurently linked cross project tasks in the desktop version of Project. I was able to identify they were actually different tasks from different links by adding to the Task entry table the field named Project and the field named Unique ID.
Carla
-
WScsimms
AskWoody LoungerAugust 11, 2006 at 11:32 pm in reply to: Linking to Summary Tasks (Project Server 2003 / SP1) #1024229Only downside I know of is after you link summary tasks to summary tasks you cannot create concurrency of summary task groupings from linking subtasks, you still have the option of Lag/Lead time for the link and that would create concurrency. I have been known to link summary tasks to summary tasks in consolidated projects when I am realtivley sure I will not need to overlap summary groupings and not had any negative consequences. Worst case scenario unlink the summary tasks and relink subtasks if necessary. I think that not linking summary tasks as a recommendation is valid, and is probably a good strategy particularly for inexperienced project users it makes the plan a little more flexible. My opinion on Project ” rules” is after you have some experience and can understand the cascading effects of changes you make and you have the ability to make changes without destroying the plan use what makes the picture that is most useful to you for decision making and communicating to others.
My opinion only,
Carla -
WScsimms
AskWoody LoungerProject still handles scheduling with the various calendars. You have to create a valid base calendar for the overall project, then use Project Base calendar as the base calendar for your resources. You can then define the appropriate schedule options using the resource calendar for each resource, this will accomadate any shift pattern. You also have the option to use a task calendar to schedule a particular task around a particular schedule. Calendars are dynamic in that if one of the elements of projects scheduling formula work = duration * units then one of th two remaining elements will recalculate. So if you make a change in resource schedules mid project then Project will make changes for you. Your challenge is to insure it makes the changes you want. Usually the biggest problem is users do not have a good understand of how project calculates and recalculates resource assignments and do not understand how the various calendars effectively.
I attended a seminar where I saw the 2007 version of Project a couple of months ago and did not see a lot of changes that would encourage me to spend the money for the new product. I saw the Office Suite changes that will offer the new menu and toolbar changes and I don’t think this was included in the new version of Project. The most interesting change I saw was they now have a feature that when you make an edit to the plan it will highlight everything that will change in the plan as a result of the edit. It is a nice feature for new users because one small change can affect the entire project plan. They have also made a lot of additions to the help features in an effort to help users understand how the product works.
One thing I would consider when purchasing is if you are planning on eventually using the Server based product for collaboration. The server based product does not work with Standard edition Project and requires I think at least the 2002 Professional version. I did not see a lot of what I would think to be significant changes to the standard product from 2000 to present. The addition of the task pane and some additional help features are about it.
Carla
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 hour, 7 minutes ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
2 hours, 34 minutes ago -
What is wrong with simple approach?
by
WSSpoke36
4 hours, 9 minutes ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
10 hours, 37 minutes ago -
Location, location, location
by
Susan Bradley
2 hours, 21 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
12 hours, 3 minutes ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
2 hours, 47 minutes ago -
June 2025 Office non-Security Updates
by
PKCano
22 hours, 49 minutes ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
4 hours, 52 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
22 hours, 45 minutes ago -
How start headers and page numbers on page 3?
by
Davidhs
1 day, 9 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
11 hours, 51 minutes ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
1 day, 17 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
1 day, 17 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
1 day, 7 hours ago -
Firefox 139
by
Charlie
1 day ago -
Who knows what?
by
Will Fastie
2 hours, 31 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 day, 18 hours ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
1 day, 12 hours ago -
Misbehaving devices
by
Susan Bradley
14 hours, 18 minutes ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
3 days ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
26 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
2 days, 23 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
1 day, 22 hours ago -
Edge Seems To Be Gaining Weight
by
bbearren
2 days, 13 hours ago -
Rufus is available from the MSFT Store
by
PL1
2 days, 21 hours ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
4 days ago -
KB5061768 update for Intel vPro processor
by
drmark
2 days ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 day, 22 hours ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
3 days, 20 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.