Backup Bit?

2005-04-15 Thread Ted Peters
Hi all, My goal is to not have my application copied to the desktop computer during HotSync. I am finding conflicting documentation, postings, and real-world experience regarding the Backup Bit. Some docs say that not setting the Backup Bit will prevent a database from being backed up. Some

Backup Bit

2005-10-20 Thread moulieswaran_e
I need assistance to prevent my database from being stored as backup. I unchecked the Set Backup Bit in mytarget Settings, but that does not seem to work and the pdb file is getting stored in backup. I tried to remove the backup bit through the following code, but still the pdb file is

Database Backup Bit?

2000-06-30 Thread Kevin Mckee
Is there a way to set the database backup bit so that the database will get backed up AFTER the database has already been created and populated with record?. IE. It was created without the bit set. Regards, Kevin -- For information on using the Palm Developer Forums, or to unsubscribe

Database Backup Bit?

2000-06-30 Thread Kevin Mckee
Is there a way to set the database backup bit so that the database will get backed up AFTER the database has already been created and populated with record?. IE. It was created without the bit set. Regards, Kevin -- For information on using the Palm Developer Forums, or to unsubscribe

PDB backup bit

2001-05-30 Thread Richard.Johnstone
Everytime I get a PDB off either the handheld or the POSE, the backup bit is set to true. Is there a way to get a version of the pdb to my PC without the backup bit set?? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support

Re: Backup Bit?

2005-04-15 Thread Eka Gauranga Das
Hi... I'm using the Backup Bit feature... and working for us... If set you can Backup those files to PC with hotsync , if NOT set they doesnt go... On 4/15/05, Ted Peters <[EMAIL PROTECTED]> wrote: > Hi all, > > My goal is to not have my application copied to the deskt

Re: Backup Bit?

2005-04-15 Thread Greg Wilson
As the Palm OS Programmer's API Reference says in regards to the dmHdrAttrBackup bit (one of the standard database attributes), "The database should be backed up to the desktop computer if no application-specific conduit is available." Any database that doesn't have this bit set won't be backed

Re: Backup Bit?

2005-04-15 Thread Ted Peters
Greg, I appreciate the response. That matches half of the documentation that I have found, but not the other half, or what I observe in the real world. Specifically, MetroWerks CodeWarrior "Targeting Palm OS.pdf" says "The Set Backup Bit check box lets you force the HotSync softw

Re: Database Backup Bit?

2000-06-30 Thread Tom Zerucha
On Sat, Jul 01, 2000 at 01:25:06AM -0500, Kevin Mckee wrote: > Is there a way to set the database backup bit so that the database will get > backed up AFTER the database has already been created and populated with > record?. IE. It was created without the bit set. DmSetDatabaseInfo -

Problems setting backup bit

2001-01-24 Thread Craig Torell
I set the backup bit on a newly created record database using the following code under OS 3.5: DmDatabaseInfo(cardNo, dbID, NULL, &dbAttributes, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); dbAttributes |= dmHdrAttrBackup; DmSetDatabaseInfo(ca

Re: PDB backup bit

2001-05-30 Thread Phillip Streck
You can turn it off your self by using the bitwise exclusive operator. Philip Streck Akron General Medical Center Information Systems >>> "Richard.Johnstone" <[EMAIL PROTECTED]> 05/30/01 09:21AM >>> Everytime I get a PDB off either the handheld or the POSE,

Re: Problems setting backup bit

2001-01-24 Thread Steve Mann
>The problem is that the database now appears as >a separate item in the Launcher's "Delete" and "Info" options, even if I go >ahead and set the "hidden" attribute as well. Further, Launcher will let me >delete my application, but the database still remains in the "Delete" list >even though it has

Re: Problems setting backup bit

2001-01-24 Thread Craig Torell
"Steve Mann" <[EMAIL PROTECTED]> wrote in message news:37047@palm-dev-forum... > The fact that it appears as a separate item sounds suspiciously like > it, in fact, doesn't have the same creator ID as the delete app. You > might want to double check that. Thanks for your response, Steve. Unfortu

Question about database backup bit

2002-02-01 Thread Mark Biek
I have the following code setting and unsetting the backup bit of a database: Err err; UInt iAttrib; err = DmDatabaseInfo( 0, idDatabase, NULL, &iAttrib, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ); if( err ) { ErrDisplay( "DmDatabaseInfo FAIL" ); r

Switching backup bit for a database

2002-01-10 Thread Gearoid Murphy
Hello everyone, This is a simple problem. I have a checkbox that when ticked causes the backup bit for a database to be set and when unticked causes the backup bit to be unset. The problem is that I don't know the syntax for unsetting the backup bit: error = DmDatabaseInfo(0, dbID,

Quick Install turning Backup bit on?

2005-04-19 Thread Ted Peters
It appears that the act of installing our application's PRC via the palmOne Quick Install (Windows, v 1.1) is causing the BackUp bit to be set, even though I know the bit was not set when the PRC was built. Dragging the PRC onto a Simulator does not do this. Has anyone else seen this beh

Reset backup bit on the PC

2007-07-26 Thread Regis St-Gelais
I copyed a PDB file that was on the PDA by seting its backup bit using FileZ. Now I have the PDB file on my PC but I want to reset the backup bit (directly in the PDB file on the PC) I know there is at leas one utility that does that but I can't remember it's name. I did some search b

How do you set the backup bit?

2000-07-10 Thread Christopher Corio
Sorry I'm new and can't figure it out. Thanks, Chris Corio -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Switching backup bit for a database

2002-01-10 Thread John Marshall
On Thu, Jan 10, 2002 at 10:25:29AM +, Gearoid Murphy wrote: > if (backUp==true) dbAttrs |= dmHdrAttrBackup; [...] > I know this is a very basic question but could anyone tell me how to unset > the bit. The relevant bitwise operators are & | ~. (There are others too, but these are the releva

Re: Reset backup bit on the PC

2007-07-26 Thread Regis St-Gelais
"Regis St-Gelais" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > up Interface > disregarde the "up Interface" at the begening of my post. Its a copy and past typo. -- Regis St-Gelais www.laubrass.com -- For information on using the ACCESS Developer Forums, or to

Re: Reset backup bit on the PC

2007-07-26 Thread Regis St-Gelais
Answering my own post: PAR -- Regis St-Gelais www.laubrass.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: How do you set the backup bit?

2000-07-10 Thread Dave Lippincott
you set the backup bit? > Sorry I'm new and can't figure it out. > > Thanks, > Chris Corio > > > > -- > For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ > -- For i

Never Mind Re: Question about database backup bit

2002-02-01 Thread Mark Biek
Never mind. I, of course, realized my mistake 30 seconds after posting. I was using & instead of ^. Doh! "Mark Biek" <[EMAIL PROTECTED]> wrote in message news:75410@palm-dev-forum... > > I have the following code setting and unsetting the backup bit of a > da

Re: Never Mind Re: Question about database backup bit

2002-02-01 Thread Laurie Davis
I don't think that you want that either. It will toggle the backup bit, but not necessarily force it to off, Try iAttrib &= ! dmHdrAttrBackup; "Mark Biek" <[EMAIL PROTECTED]> wrote in message news:75411@palm-dev-forum... > > Never mind. I, of course,

Re: Never Mind Re: Question about database backup bit

2002-02-01 Thread Brian Smith
On Fri, 1 Feb 2002, Laurie Davis wrote: > Try iAttrib &= ! dmHdrAttrBackup; Still not quite right... iAttrib &= ~dmHdrAttrBackup; You need a bitwise NOT operation (~), not a logical one (!). --- Brian Smith // avalon73 at

Re: Never Mind Re: Question about database backup bit

2002-02-05 Thread Mark Biek
Actually my intent was just to toggle the backup bit state back and forth. It's going to be a user controlled option. "Laurie Davis" <[EMAIL PROTECTED]> wrote in message news:75417@palm-dev-forum... > > I don't think that you want that either. It will toggle the