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

    windows 7 phone unlocking

    I am an old-timer trying to learn new tricks. Specifically developing an app for the windows phone. I am running VS2010-express for phone development and put together a few apps using the windows 7 phone emulator that comes with it. Having decided to see what a real device looks like I bought...
  2. murrayja

    ReflectionTypeLoadException: Unable to load one or more ... types

    This exception is thrown when loading an 'aspx' module that includes "ajaxToolkit:ToolkitScriptManager ... ". I am developing a web page and the page loads and executes correctly using the VS2010 express debugger and when using 'localhost' through Apache after 'publishing' the page to the file...
  3. murrayja

    vs2010 express multi-project solution organization

    I have built two projects, each represents a web page. When I treat them singly they both work. When I put them in a multi-project solution the solution builds but doesn't run. I get an error that reads "cannot find type xxx' where xxx is the class name of a projects default.aspx file. I...
  4. murrayja

    Could not load type 'Html_5._default1'. …Why?

    Running MS VS2010 web developer Express. I 'upgraded' from XP IIS 6 to Win 7 IIS 7 and projects that i had developed stopped working in the sense that IIS 7 did not natively support ASP.NET nor did it support Framework 4.0. After much grubbing around on the internet I got those two things...
  5. murrayja

    stringbuilder to string[]

    I am using the kernel function to read dot-ini sections and section values. The function ReadPrivateProfileSection returns a 'stringbuilder' value which is a series of strings representing the key=value items of the section as strings (null terminated) and terminated with a final null. I want...
  6. murrayja

    file access denied

    I move files between computers using a thumb drive. I have somehow gotten into the situation where all the files in a folder are denied write access. I am looking for a way to set the permissions on all the files together. I know how to do it individually. I have tried "ATTRIB -R *.*" but it...
  7. murrayja

    return to calling page

    I have a 'popup' (.aspx) in which I want to return control to the requesting page. I have been unable to find any reference to the calling page in the 'request' or the 'response'. I feel sure the capability is there. Can anyone direct me to it? Thanks jim murray
  8. murrayja

    Linq and MySql

    I have used Linq with MsSql and now I want to use it with MySql. I add a Linq to Sql class to my project and create a database connection, in the database explorer, to my MySql database. When I drag a batabase table to my linq class I get the message ... "the selected objects use an unsupported...
  9. murrayja

    LINQ aggregate function max()

    I have inherited a LINQ project. I am trying to do the equivalent of "select max(empid) from employees" using LINQ. My statement is var mx = (from EmpID in db.EmployeeMains select EmpID).Max(); and it barfs at the max() part. EmployeeMains is a table with column EmpID as an int. I could work...
  10. murrayja

    IE8 transfers to firefox

    I normally use Firefox but I have to fix a web site that requires IE. I installed IE8 and now when running IE8 I put in a URL and hit 'go' Firefox starts up and I see the site in Firefox. I can't find anywhere in Firefox options how to turn off default browser. Help!!!
  11. murrayja

    "unable to start debugging"

    I just 'upgraded' from xp-home to xp-pro. I re-installed dot-net 2.0 and Visual C# 2005 Express. Now when I start debugging a C# project I get the message ... Error while trying to run project: Unable to start debugging, The binding handle is invalid. I have uninstalled and re-installed twice...
  12. murrayja

    windows explorer wont show hidden files

    I want to view my email folders under documents & settings > user name > application data. Application data is hidden. When I set explorer to view hidden files it won't take. It shows the radio button being selected but when I go back in to check it, it is unselected. I have been poking...
  13. murrayja

    xml parsing error

    I have a customer who requires a webservice written in C# and requires IIS as an app-server. I have two computers on a LAN one of which, 'B', came with XP-PRO the other computer, 'A', I just upgraded from XP-HOME to XP-PRO so I could have IIS in both machines. Both are now running IIS 5.1. I...
  14. murrayja

    apache vs wampserver

    I have been using wampserver to run an asp-dot-net webservice. I want to move it to a vanilla apache install, rather than tell my customer to install wampserver. I downloaded apache 5.5 and cant find either the modules directory or the httpd.conf file. I have looked through the apache...
  15. murrayja

    webservice tutorial

    I have created a web-service and client using DOT-NET and now I want to do the same using JAVA. There are a lot of tutorials out there but unfortunately they all seem to have the same characteristic ... they don't agree with the tools they use. They are out of date and at some point in the...
  16. murrayja

    javax.xml.soap missing

    I have been trying to develop a webservice using C# and visual studio and I have given up. So now I am trying Java. I am following a tutorial at http://www.roseindia.net/webservices/netbeans/SOAPwithAttachmentsAPIforJava.shtml and netbeans is saying import javax.xml.soap.*; is not found...
  17. murrayja

    Sockets+WiFi

    I have a simple listener that I am using on my LAN. It works fine of ethernet but not on WiFi. Is there something different I have to do on WiFi? The source is attached. thanks jim murray
  18. murrayja

    tcplistener / tcpclient

    I can't get them to work on a windows local area network. I cant ping each machine from the other machine but my listener never gets a message. TcpListener listener = null; try { listener = new TcpListener(IPAddress.Any, port); listener.Start(); } catch (SocketException se) .... client =...
  19. murrayja

    tcpclient error message 10049

    The requested Address is not valid in its context" the ipendpoint that i give new tcpclient(ipep) is 192.168.1.4 : 8080 which is on my LAN. I can ping this address. I have a tcplistener running on this address. IPHostEntry heserver = Dns.GetHostEntry(tb_destname.Text); IPEndPoint ipep = new...
  20. murrayja

    ASP Help Linkage

    I am using ASP VS-2008 Express and Visual C# 2005 Express. The HELP I get with vs-2008 is useless, ie it gives none of the classes i am using with C#. I would like the help I get with VS-2005 (C#) to come up when I am designing an asp project. Now I am starting an old C# project and firing up...

Part and Inventory Search

Back
Top