Search:

Type: Posts; User: drag0n_45

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: Content-Type not staying set in a MSXML2.ServerXMLHTTP object

    I was posting to the wrong url. It should have been xlDocs/user/login.

    For the reference of others: this is a Drupal web service to which I am connecting. Still the same error, though.
  2. Content-Type not staying set in a MSXML2.ServerXMLHTTP object

    Hi there,
    I'm hoping this is fairly simple; I have a web service that I'm trying to access, and it takes form data.

    For some reason I cannot set the header for content-type to...
  3. Replies
    0
    Views
    955

    Detect Table Overlap

    Hey there,
    I'm writing an app that automatically creates a PivotTable.

    I've got everything working, except that I want the PivotTables to all appear on the same sheet. Often, users will be...
  4. Excel equivalent of GSpreadsheet's Filter()

    Hi there,
    I've been using GSpreadhseets for awhile, and built a simple spreadsheet making heavy use of the filter function. In particular, I have a data entry sheet which has 4 columns. In my...
  5. Re: Error 430 trying to instantiate DB Connection

    I had this problem as well on a project just now. I believe the cause is that I opened the project in my Win7 SP1 box, closed and saved it, then opened it in Win7. I solved the issue by removing the...
  6. Sharepoint and Regular Expressions for filtering?

    Hi there,
    I'm not sure where this goes, or even if it's appropriate for this forum.
    Currently, I'm trying to develop a script for a Sharepoint workflow to compare an entry in a sharepoint list...
  7. Replies
    2
    Views
    2,434

    Re: CallByName not working?

    One solution I found is this, but it's not that elegant:

    Public Sub beforeTest(ParamArray args() As Variant)
    Select Case UBound(args)
    Case 0
    CallByName Me, "test", VbMethod, args(0)
    Case 1...
  8. Replies
    2
    Views
    2,434

    Re: CallByName not working?

    EDIT: I've done some experimentation and noticed that calling one callbyname method works, Calling CallByName from a method that is called and that has a paramarray only works if I explicitly say:
    ...
  9. Replies
    2
    Views
    2,434

    CallByName not working?

    Hi there,
    I'm trying to use callbyname to create a central method to call for a number of interfaces and facilitating a number of methods. I can't seem to get CallByName to work.

    The way it is I...
  10. Re: Search for a row by the next previous date AND row match

    solved this by doing this:

    N(A:A)=A:A*H$8 where I wanted the if statement.
  11. [RESOLVED] Search for a row by the next previous date AND row match

    Hello,
    I'm working on a Google Docs sheet to keep track of bills in a shared space. At one point in the calculations for the spreadsheet I need to use an IF inside of filter, specifically, I want to...
  12. Replies
    3
    Views
    661

    Using Typeof with parametized variable

    Hi all,
    I doubt this is possible, but it doesn't hurt to ask.

    I am utilizing a number of variant stacks to implement interfaces, and I want a write a method that determines whether or not the...
  13. Re: NoClassDefFoundError when running JAR with lib items

    Solved. Turns out the Eclipse JAR compiler has a number of issues. I used the Fat JAR Compiler as a plug-in and it worked with no problems (none that were class related anyway - still had trouble...
  14. [RESOLVED] NoClassDefFoundError when running JAR with lib items

    Hello,
    This problem has been plaguing me for days.
    We're working on making a web-based Java application.
    It was written by an amateur programmer attempting to implement the MVC framework. It's...
  15. Re: Seemingly random pathnames being used with App.path

    Yes, that is what I mean, and I understand. Generally, we install the app locally, then delete the local EXE and run it from the network.

    I don't have an issue at this point. I had to explicitly...
  16. Re: Seemingly random pathnames being used with App.path

    [QUOTE=dilettante;4036693]Error message? I didn't see an error message mentioned earlier. Specifics can help.
    [QUOTE]
    The error message is just a file not found message. My error handlers pick up...
  17. Re: Seemingly random pathnames being used with App.path

    So I've discovered that the issue has nothing to do with the protected path name thing. Seems to only apply when the installation is on a drive other than C. I.E. In a server environment, we often...
  18. Re: Seemingly random pathnames being used with App.path

    Indeed, and those policies are probably being used. I'll try using a different path and seeing if that makes a difference, but that will prove a bit tedious.

    I have already tried explicitly...
  19. Re: Seemingly random pathnames being used with App.path

    That sucks. Looks like I'm gonna be rewriting my app.....

    However, the weird thing is that this DOESN'T HAPPEN on my server (a Windows 2003 server), but when run on another 2003 server it does...
  20. [RESOLVED] Seemingly random pathnames being used with App.path

    Hi there,
    I have an app that I've been writing in VB6 w/ data controls (I know, I know). The app, on first run, will generate a db in the app.path directory. Problem is, it's not finding it in...
  21. Replies
    7
    Views
    4,740

    Re: SUMIF with two conditions?

    Array fomulas seemed to have worked. Not quite sure how to isnert them into OO, but I worked on the cell in Excel and then opened it in OO and it seems to have worked without issue. thanks again!...
  22. Replies
    7
    Views
    4,740

    Re: SUMIF with two conditions?

    Si,
    I'm not sure if you can do that in OO. Though if I remember right, I tried that and the problem I ran in to was that I could not evaluate a range of dates against one cell.

    I'd need to play...
  23. Replies
    7
    Views
    4,740

    Re: SUMIF with two conditions?

    I'm not sure you can do array formulas on OO. I'll let you know how that works out when I get a chance.
  24. Replies
    7
    Views
    4,740

    Re: SUMIF with two conditions?

    Good idea.
  25. Replies
    7
    Views
    4,740

    [RESOLVED] SUMIF with two conditions?

    Hi there,
    I'm using OpenOffice Calc (which seems to have many of the same built-in functions as Excel), and I'm looking to perform a SUMIF with using two comparisons, and I'm not quite sure how to...
  26. Replies
    15
    Views
    11,536

    Re: Deep Copy Collections *Resolved*

    Ah, I think I misinterpreted.

    When you said UDT, I was thinking class references. I.E. Class A uses class B as an auxillary class, etc.
    I wasn't thinking of UDT's in the more denotative sense -...
  27. Replies
    15
    Views
    11,536

    Re: Deep Copy Collections *Resolved*

    So a UDT inside of a UDT wouldn't do the trick then?

    Alternatively, one could just take after Java and use ToString, but that doesn't work with a collection. :(
  28. Replies
    15
    Views
    11,536

    Re: Deep Copy Collections *Resolved*

    How would you leverage those File IO statements on a UDT? Are you suggesting a sort of serialization?
  29. Replies
    15
    Views
    11,536

    Re: Deep Copy Collections *Resolved*

    I know this is an old thread - found it via Google, but am I correct in assuming that that is not a true deep copy as it does not copy the indices? What about using API's CopyMemory?

    I also heard...
  30. Replies
    5
    Views
    483

    Re: Database Access Failing?

    GarryMazzone, Huh?
  31. Replies
    5
    Views
    483

    Re: Database Access Failing?

    ....well that worked nicely....
    Too many slashes in too many different directions. LOL Having just got the Windows/UNIX/website differences down, it's annoying to have to learn another one....is...
  32. Replies
    5
    Views
    483

    Database Access Failing?

    Hi there,
    I'm not sure if this is the right place to post this, but I'm having a hard time simply getting programs to connect to my database.
    If this isn't the correct place to post this, what...
  33. Weird number to string conversion issue: CRX + Access

    Hi there,
    I'm having some trouble displaying a value as I'd like to a Crystal Report. As you may know, Crystal doesn't support decimal alignments (as the decimal tab stop in word does), so I wrote a...
  34. Replies
    4
    Views
    887

    Re: PHP-based file uploader?

    FileThingie seems to do kind of what I want. I'm trying to increase my upload limit thought.
  35. Replies
    4
    Views
    887

    Re: PHP-based file uploader?

    I'm prefer a web-based package. Something I can put on my companies intranet site. The less installation work I have to do, the better.

    (We don't even use AD yet. :()
  36. Replies
    0
    Views
    512

    Windows logoff script experation?

    Hey there,
    I have a Windows 2003 DC set up and am logging into that DC daily. I used to have a roaming profile, but upon realizing the inadequacy of my ways, I decided to use logoff scripts and try...
  37. Replies
    4
    Views
    887

    [RESOLVED] PHP-based file uploader?

    Hi there,
    I'm looking for a solution for my company to securely transfer files that are too large/in a format not support by my e-mail client (we outsource). I'm envisioning something as simple as a...
  38. Re: Changing WAB entries if a given criteria is met?

    The API's seems rather useless and the Codeplex project seems like it'd take a bit to learn.

    This isn't anything important, just didn't know if there was a one-click program or method out there...
  39. Changing WAB entries if a given criteria is met?

    Hello there,
    We just implemented a new e-mail system, and of course we're not using a directory service. The new system changed the domain of all of our e-mail addresses (i.e. xxxxx.com to...
  40. Re: [RESOLVED] Compare a directory and subs against another?

    I usually just buy a new hard drive and put the old one in as a slave (or another SATA). That's the best way to go, IMHO.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width