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

    JAXRPC Web Service Type Mapping

    Hi, We have recently migrated from JBuilder to Eclipse/Ant for Java Web Service creation and deployment. I am using the "wsdeploy" ant task (contained the in the JAXRPC 1.1 distribution) and a JAXRPC-RI.xml file for configuration. The problem I am having is that, when built using JBuilder...
  2. wolfie78uk

    XP Pro Systray Hang on Startup

    Hi, I have an annoying problem with a Windows XP (Version 2002) SP2 install on an Acer Aspire 1691WLMi laptop (Intel Pentium M 1.6, 512MB RAM). Basically, after logging in, the desktop and taskbar all load OK (I am even treated to the Windows login music) but nothing loads in the systray and I...
  3. wolfie78uk

    XSLT : Turning Siblings into Children

    Hi, Imagine that I have the following XML document: <article> <heading level="1">Heading1</heading> <heading level="2">Sub1</heading> <paragraph>1st <bold>block</bold> of info</paragraph> <heading level="1">Heading2</heading> <heading level="2">Sub2</heading> <paragraph>2nd...
  4. wolfie78uk

    Late binding with Remoting

    Hi, When using .NET remoting, it is my understanding that (because the client requires type information about the remote object) a copy of the assembly containing the remote object must be present on the client machine. Is this the case? If so, surely it defeats the object of using remote...
  5. wolfie78uk

    How do I perform basic memory management

    Hi, Having been programming in the sheltered word of .NET for a while, I appear to have forgotten how to perform the most basic of tasks in C and desperately require help. I want to store a list of words in memory that I can access quickly. Because all of the words will be of different...
  6. wolfie78uk

    Specifying application pool when deploying a web service

    Hi, Does anybody know how to specify which application pool a Web Service is installed into when using the Web Setup installation template in Visual Studio? Even better, could that application pool be created on the fly (perhaps in code that will run during the installation process?). I really...
  7. wolfie78uk

    Cannot execute .NET app on Windows 2000 server using terminal services

    Hi, I am trying to deploy a .NET Windows Forms App on a Windows 2000 Terminal Server. The App does not write to the registry although, because it is a test harness for a web service, it does make a connection to a web service. Unfortunately, the application will not run for a...
  8. wolfie78uk

    Cannot execute .NET code on Terminal Services

    Hi, I am trying to deploy a .NET Windows Forms App on a Terminal Server. The App does not write to the registry although, because it is a test harness for a web service, it does make a connection to a web service. Unfortunately, the application will not run for a non-administrator user. It...
  9. wolfie78uk

    Why does Convert.ToBase64String not insert line breaks every 76 chars?

    Hi, Does anybody know why the method "Convert.ToBase64String" does not insert <CRLF> every 76 characters as per RFC2045. Obviously, this is extremely easy to overcome. I was just curious and wondered if there was some property I could set that would make this happen. I'm pretty new to C#...
  10. wolfie78uk

    Prevent freeform text from being entered in a combo box?

    Hi, I have a combo box, the values of which are provided by a query. Is there any way to stop users entering free-form text and forcing them to select one of the options on the list? Cheers, Simon
  11. wolfie78uk

    Cannot evaluate/set option button state

    Hi, I have an access form that consists of two "parts". The lower part of the form displays a datasheet and the upper part of the form provides the user with a bespoke interface for filtering the data. It is the filter that I am concerned with. The filter consists of a number of controls and...
  12. wolfie78uk

    Printing from a &quot;print preveiw&quot; view

    Hi, I have been asked to perfom some modifications to an application that I wrote a couple of years ago in Access/VB. Unfortunately, I have spent most of my time since programming in Java and have become VERY rusty in the ways of Access/VB. What I am trying to achieve should be very simple. I...
  13. wolfie78uk

    Does Java require imported libraries to be present at runtime?

    Hi, I have been writing an Ant build script to build a large project, previously built with JDeveloper. However, I noticed that there was a descrepancy between the sizes of the Jar files produced by JDeveloper and those produced by Ant. The reason for this was that JDeveloper included all...
  14. wolfie78uk

    Problem viewing XML in IE5.5

    Hi, I am experiencing a problem when opening an XML file in IE5.5. I cannot include the exact file for confidentiality reasons but I have included one that replicates the error : <?xml version="1.0" encoding="UTF-8" ?> <simon annoyed="true" frustrated="very"> Stupid pound sign : £ </simon>...
  15. wolfie78uk

    Oracle9i R2 Installation Problems (netmgr, netca)

    Hi, I am having trouble with an install of Oracle 9i Release 2 on Linux Mandrake 9.1. I have 512 MB DDR RAM and a Duron 850 CPU. The install appeared to run fairly seamlessly except for a handful of problems : 1) Oracle complained that it could not set the file permissions on four files. They...
  16. wolfie78uk

    How do you creat a home made installer???

    Hi guys, I have an Exe that is dependent on 3 DLLs (written by myself). When these files are copied onto a new machine, I need them to be in the same directory as a certain program that is already on the machine. All I want to do is put another .exe on a disk that copies the files into that...
  17. wolfie78uk

    Blocking Keyboard and Mouse Input

    I was trying to block all keyboard and mouse input whilst running my VB application but was unable to do so with the API functions in VB. This may be a horribly long winded way to do it (and I leave myself open to the mockery of the experienced programmers) but it works. 1)Open up Visual C++...
  18. wolfie78uk

    How can I block keyboard and mouse input?

    I need to block all mouse and keyboard input whilst my application is interacting with another application. The blocking of input has to be global (i.e the blocking is not specific to my application). There is a library function for C++ called &quot;BlockInput&quot; which would do the trick...
  19. wolfie78uk

    Gleaning window details.

    I am writing an application that sends data to a database front end - in the form of sending key sequences. However, I have hit upon a large snag. Imagine a screen that facilitates the ammendment of existing records. The bottom half of the screen consits of combo boxes whilst the top half...
  20. wolfie78uk

    Am I to assume that VB doesnt support function overloading?

    In C++ functions can be 'overloaded' (i.e two functions share the same name but recieve different parameters and behave differently). This doesn't seem to be possible in VB. Rather than making a mess of the application that I am building, I have created the following code to test it : Private...

Part and Inventory Search

Back
Top