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 derfloh 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: Genimuse
  • Content: Threads
  • Order by date
  1. Genimuse

    Treeview and Simple Dataset

    I've done a bunch of searching, but I can tell that my fundamental lack of understanding of treeview nodes is keeping me from putting this together. I've got a simple dataset with a view that looks like this: GameID Game.Name DeckID Deck.Name VersionID Version.Name 1 Candyland 1...
  2. Genimuse

    Choosing the Boot Drive

    I've got a system that recently crashed, with a hard drive on IDE 0, a PATA drive. I've replaced it with a SATA drive which puts it on IDE 2, which is fine, but I still want to access data off the other drive. If I boot with both attached it insists on booting from the drive on IDE 0 (which...
  3. Genimuse

    DISTINCT Records Aren't Distinct

    I suspect this has something to do with how the joins are set up (I was lazy and let Access make them rather than writing them myself, but it looks ok), but for some reason I don't actually get distinct records, I still get plenty of dupes: SELECT DISTINCT mwpax.[Date Modified], mwphy.[First...
  4. Genimuse

    Form, Modules, Scope, and Recursion

    Versions of my question come up in my searching here, but they don't quite seem to address my problem. Simple app, one form (called, cleverly, MainForm) and several code modules, modules that have almost nothing to do with the form (other than being called by it). The form has a browser...
  5. Genimuse

    Weird Text Box Jumping

    The Setup: I have a simple report based on a query. The detail section is composed of 12 text boxes, side-by-side, all tied to one of the query fields. Every text box has the following formatting: Format: Currency Can Grow: No Can Shrink: No Text Align: Right (same prob if no alignment) The...
  6. Genimuse

    Eliminating New Record After Delete

    With a fairly simple form that's connected to a recordset I added a Delete This Record button using the wizard. I tacked on a bit of additional code to delete some foreign data at the same time. This does indeed work: it deletes the current record and runs the extra code. However, it also...
  7. Genimuse

    Concatenating an Integer to a String as an Integer

    I'm creating a string that will be converted to base64. The string includes some text (standard string stuff) and some DWORDs. I need to concatenate the string along the lines of text + DWORD + DWORD + text A UInteger will hold a DWORD nicely (since a DWORD is an unsigned 32 bit int), but I...
  8. Genimuse

    System.Threading.Timer Basic Question

    I'm sure I'm missing something very basic here, am pretty much a newb in many ways, but two days of Googling and adjusting things haven't brought me an answer, so here's my question. Currently I'm using a Timer control in an app (this is on the Compact Framework 2.0, but I don't think it...
  9. Genimuse

    Colons in XPath

    Is there a way to escape or otherwise work with colons in element names under XPath? The XML looks like this: <AB:Animal> <AB:Pet> Dog </AB:Pet> </AB:Animal> I'd like to access AB:Pet, but "//AB:Pet" will always fail. Sorry, XPath newbie, this may be obvious.
  10. Genimuse

    Asynchronous Web Service Call and Tracking

    I'm sending some information to a web service, and it replies with an integer code to tell me whether the format was accepted or if there were problems. Because I could be doing this multiple times and in the background while the user does other stuff, and because the internet connection could...
  11. Genimuse

    Retrieving Multiple Named Elements in XPath

    I'm parsing through an XML document and need to get multiple values from each item. A single item in the XML looks like this: <Customer> <ID>1043</ID> <Name>Bob Smith</Name> <Provider> <ProviderID>860</ProviderID> </Provider> </Customer> I'm looking for records that match a...
  12. Genimuse

    Multiple For Eaches or XPath Change?

    I'm parsing through an XML document and need to get multiple values from each item. A single item in the XML looks like this: <Customer> <ID>1043</ID> <Name>Bob Smith</Name> <Provider> <ProviderID>860</ProviderID> </Provider> </Customer> I'm looking for records that...
  13. Genimuse

    Timer Effect without a Timer

    I'm working on a "server" application that will have no user interface -- it'll be a console application. (It's on the PocketPC, but I doubt that changes the possible answers too much). As a server, it sits and listens for requests on a TCP socket. The "standard" way of doing this seems to be...
  14. Genimuse

    Framed Anchor Navigation

    Sorry, I know this is straightforward but after battling it for multiple hours, I need to go ahead and ask y'all. Simple frameset, three frames named topframe, mainframe, and bottomframe. "mainframe" has multiple anchors in it (e.g. <a name="12748"></a>). "bottomframe" has a simple navigation...
  15. Genimuse

    Opening a File on the Server Directly

    Ok, in response to a user submitting a form I've managed to create an Excel file on the intranet server, in a "publicly"-accessible directory. What I have managed is to, via an ADODB stream, sent the file to the user, so things come off pretty seamless: fill out the form, click the button, get a...
  16. Genimuse

    Returning a linked Word document AND a page

    So... I've got a form where the user selects some options and clicks a button. What I'd like to happen is that the form submits to itself (no prob), and upon returning it both redraws the form AND returns a... well, a Word document, sort of. Ideally the form would reappear in the browser window...
  17. Genimuse

    Checking and Unchecking Checkboxes

    I have a simple form, named CalForm, with 8 checkboxes on it, named Day0 through Day7. If any of the checkboxes change, I want to call a function that checks for a few states and makes changes based on those states: 1. If Day0 is now checked, Days 1-7 should become unchecked. 2. If one or...
  18. Genimuse

    Invalid Bracketing of Name Weirdness

    I have a query that runs great in Access itself, but when running it via ADO (via ASP) I get this unusual error: Invalid bracketing of name '[Dr. ]'. This is pretty strange, since "Dr. " is a string literal in the query, not a name. Two tables, one full of TimeOff events, and one full of...
  19. Genimuse

    Setting Focus to a New Row in a Datasheet Subform

    While subform problems are many, I tend to have pretty good luck if the subform is in datasheet view. However, many times the amount of data in the subform is enough that the subform needs to vertically scroll. The vast, vast majority of the time, though, the user is going to want to add a new...
  20. Genimuse

    Recordset and Query Results Differ

    I've got a page with a fairly simple query (it has a nested subquery, but it's pretty straightforward). If I display my SQL string and run it as a query in the same Access database I'm connected to in ASP, I get the results I expect, specifically something useful from the subquery part (a SUM)...

Part and Inventory Search

Back
Top