Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: PogoWolf
  • Order by date
  1. PogoWolf

    XML and ASP.NET Controls..

    Great, I'll keep playing! Thanks!! The PogoWolf http://pogowolf.GamersCommune.com
  2. PogoWolf

    XML and ASP.NET Controls..

    My Question isn't about something as simple as reading in the XML and displaying. IT's useing the XML to add controls to a form.. BUt I'm still looking though the google links. The PogoWolf http://pogowolf.GamersCommune.com
  3. PogoWolf

    XML and ASP.NET Controls..

    Thanks.. though I'm kinda new to the XML thing would you happen to know of a site on the net with a little more sample code? The PogoWolf http://pogowolf.GamersCommune.com
  4. PogoWolf

    XML and ASP.NET Controls..

    Would there be a way to dynamicly create ASP.NET (1.1) controls though an XML file? something like: XML file: <Items> <control1>"<Input id=button1 type=button value='Fooa'>"/> <control2>"<Input id=button2 type=button value='Foob'>"/> <control3>"<Input id=button3 type=button...
  5. PogoWolf

    'unknown' error.

    When ever I try to open a table in Access 2003, I'm treated with the error of 'unknown' There's no numbers, nothing. just a message box with 'unknown'. I believe this might be a security issue.. but I'm not sure.. anyone run into this before? The PogoWolf http://pogowolf.GamersCommune.com
  6. PogoWolf

    How to remove all embedded formatting

    Thanks, MoiraT I have done that, and I can't delete all the changed styles. Word says 'The default *Style* can not be deleted' I believe that means that the styles are modified versions of the 'normal' styles.. But I want to revert BACK to the normal syles, and remove all this extra...
  7. PogoWolf

    How to remove all embedded formatting

    Sorry, Word 2003 The PogoWolf http://pogowolf.GamersCommune.com
  8. PogoWolf

    How to remove all embedded formatting

    Hey all, I have a document that's been modified to use a buch of different formats, but has removed most the default format options in 'Style' Tool bar. How does one go about deleteing ALL these 'special' formats and bring back the default Word options in the style bar? I've tried clicking...
  9. PogoWolf

    Regular Expressions, and Back Reference Matching...

    Well looks like that's perfect.. =) What program did you use? and if at all possible, could you explain the expression to me? I look at mine, and then yours and realize, I've still got a LOT to learn about Reg. Exp.'s. The PogoWolf http://pogowolf.GamersCommune.com
  10. PogoWolf

    Regular Expressions, and Back Reference Matching...

    ok, let me test this out a little.. =) what does the /gim at the end of your pattern mean? The PogoWolf http://pogowolf.GamersCommune.com
  11. PogoWolf

    Regular Expressions, and Back Reference Matching...

    Thanks Borvik. it's close to what I'm needing.. 01) [01/23/05 00:04:00] Foxfire -> Platinum Boulder Golem 02) [01/23/05 00:04:02] Foxfire -> Platinum Boulder Golem 03) [01/23/05 00:04:04] Foxfire -> Platinum Boulder Golem 04) [01/23/05 00:04:06] Foxfire -> Platinum Boulder Golem 05) [01/23/05...
  12. PogoWolf

    Regular Expressions, and Back Reference Matching...

    Afternoon all, I've got this expression: \[(?<Date>\S+)\s{1}(?<Time>\S+)\]\s{1}(?<ToonName>.*)\s{1}\-\>\s{1}(?<MobName>.*) : (?<Ability>.*)\n with this sample data: 01) [01/23/05 00:04:00] Foxfire -> Platinum Boulder Golem 02) [01/23/05 00:04:02] Foxfire -> Platinum Boulder Golem 03)...
  13. PogoWolf

    Delete all data from a database.

    Hey all, thanks for the replies and everything. I would like to finish up this thred by posting the VB.NET code that I've used to Kill all the data, and the then compact the DB. Note: You will need to reference the COM Object "Microsoft ADO 2.7 for DDL and Security" (Installed with the .NET...
  14. PogoWolf

    Compact/Repair an Access DB from VB.NET

    Well that did work, and I thank you so much for the help. '// Compact the DB. Dim jro As JRO.JetEngine jro = New JRO.JetEngine() jro.CompactDatabase("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=.\DataBase\RALPHhz.mdb", _ "Provider=Microsoft.Jet.OLEDB.4.0;Data...
  15. PogoWolf

    Compact/Repair an Access DB from VB.NET

    perhaps.. Though I was hoping to get around the need to reference aother oject... Need to have MDAC2.6 installed on the computer (VS.NET installs MDAC2.7) will this work with MDAC 2.7, then? either way, I'll give it a shot.. thanks!!!! The PogoWolf http://pogowolf.GamersCommune.com
  16. PogoWolf

    Compact/Repair an Access DB from VB.NET

    Is there a way to compact a database from code, WITHOUT dropping back to RDO, in VB.NET? I'm not seeing any commands for the OLEDB object that will allow me to compact it.. The PogoWolf http://pogowolf.GamersCommune.com
  17. PogoWolf

    Delete all data from a database.

    Bingo! that did the trick! Thanks Kris11 The PogoWolf http://pogowolf.GamersCommune.com
  18. PogoWolf

    Deleteing all data from a database...

    hmm.. Would you happen to know if there's an equavlet to CurrentDB.TableDefs in VB.NET? The PogoWolf http://pogowolf.GamersCommune.com
  19. PogoWolf

    Delete all data from a database.

    Well, I found the code to do this in SQL: Declare @sql NVarChar(4000) Select @sql= isnull(@sql,'') +'Delete From ' + Name + ';' From sysObjects Where xType='U' Exec sp_executesql @sql But I don't know of a way to translate that into Access. The problem is that the database is still very...
  20. PogoWolf

    Deleteing all data from a database...

    I found this nice piece of code on the netm which will delete all records from a database. Declare @sql NVarChar(4000) Select @sql= isnull(@sql,'') +'Delete From ' + Name + ';' From sysObjects Where xType='U' Exec sp_executesql @sql but it's an SQL procedure, is there a way to do this in...

Part and Inventory Search

Back
Top