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 SkipVought 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: *

  1. davikokar

    Can't connect Nokia Lumia 1020 to my PC with windows 8 via USB cable

    I tried reloading the driver and rebooting but without success. I also downloaded the application Windows Phone app for desktop, I installed it but this app does not work at all. If I try to lunch it it does not react at all.
  2. davikokar

    Can't connect Nokia Lumia 1020 to my PC with windows 8 via USB cable

    hallo, I can't connect my Lumia 1020 to my PC. When I cable it in, I see in device manager under "other device" that the phone is listed with a yellow point. I tried to uninstall it and the replug it in but this does not work. I followed the instructions at...
  3. davikokar

    instantiate a List<T> where T is known at runtime using reflection

    doing some research I found out the solution: Type t = GetTheTypeUsingReflection(); IList newList = GetTypedList(t); IList GetTypedList(Type itemType) { Type listType; listType = typeof(List<>).MakeGenericType(itemType); return Activator.CreateInstance(listType) as IList; }
  4. davikokar

    instantiate a List&lt;T&gt; where T is known at runtime using reflection

    Hallo, I need to instantiate a generic list, but the type is going to be known only on runtime. Something like: Type T = GetTheTypeUsingReflection(); List<T> myList = new List<T>(); But this code does not work: "the type 'T' could not be found" Any suggestion? Thanks
  5. davikokar

    wireless network with PCs without wireless adapter

    Hallo MIke, I need another solution. A sort of bridge between the cabled LAN and the router.
  6. davikokar

    wireless network with PCs without wireless adapter

    Hallo, I have 4 computers without wireless capacity. I used to connect them to my modem/router with Ethernet cables. The modem/router has 4 ethernet plugs and one plug for the ADSL cable. All 4 computer where in a LAN: I could use remote desktop to access them, so I needed only one screen, one...
  7. davikokar

    reading xml file with xpath

    hallo I have an Xml file like this: <?xml version="1.0"?> <HomeFinanceXMLBase> <Content> <Configuration> <Data> <UserDefined> <CostTypeList Type="System.Collections.Generic.List`1[[ch.davico.HomeFinance.Model.CostType, ch.davico.HomeFinance.Model, Version=1.0.0.0...
  8. davikokar

    docx : is there a tool to view the xml code ?

    hallo, I was wondering if there is a simple way or a specific tool to view the xml code of a docx document. Thanks
  9. davikokar

    word automation: findin out if my word doc contains another word doc

    Hallo, I have a word document that contains, as inlineshape OLEObject, another word document. I would like to know if there is a way to find out programmatically that the OLEObject in my document is a word document.
  10. davikokar

    HDD appear in Device Manager but not in Disk Management

    No I haven't tried the software. I read the features on their websites. I haven't tried any bootable CD option.
  11. davikokar

    HDD appear in Device Manager but not in Disk Management

    Hallo kjv, yes I tried to remove the drive from the USB enclosure and plug it directly via SATA, but without success. The suggested software is not really suitable for this problem: it is software that helps you recover data that was deleted by mistake, or data from a hdd that was formatted by...
  12. davikokar

    schedule a task to run before the pc shut down

    ok, this looks pretty much like a solution. very thanks
  13. davikokar

    schedule a task to run before the pc shut down

    in my case this is not a solution because I dont really have fixed times. It can be 12pm or 12am...
  14. davikokar

    schedule a task to run before the pc shut down

    The fact is that the scheduler of WinXP asks me at what time I want to run the task. But I don't want the task to run at a specific time (because I finish working at different time), I want the task to run when I shutdown the machine (obvously the task should end, and then the machine would shut...
  15. davikokar

    schedule a task to run before the pc shut down

    Hallo, I have a task that I have to run everyday (it is a synchronization tasks). This task takes a long time (10-20minutes). I would like to run this task and then to shut down the PC. But I don't want to wait so long before I can shut down. So the question is: is it possible to automate the...
  16. davikokar

    HDD appear in Device Manager but not in Disk Management

    Hallo, Yesterday, my recently bought USB external HDD, stopped working correctly. I cannot access the data in it anymore. I am working with Windows XP. The Device Manager (in Computer Management) displays the HDD, and the properties say "This device is working properly". But in the Disk...
  17. davikokar

    moving an access DB from a machine to another: &quot;no object msg&quot;

    deleting and re-adding the control worked. Thanks
  18. davikokar

    moving an access DB from a machine to another: &quot;no object msg&quot;

    In the new machine I do have a reference to MS Common Controls 6.0 (SP6). The file mscomctl.ocx is exactly the same on the two machine. I unchecked and then checked again. But the error message stays there. In the treeview properties I see that the "OLE Class" property is set to "TreeCtrl" and...

Part and Inventory Search

Back
Top