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

    instantiate a List<T> 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
  3. 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...
  4. 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...
  5. 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
  6. 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.
  7. 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...
  8. 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...
  9. davikokar

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

    Hallo, I moved an access DB from a machine to another machine (both have access 2007 installed). When I launch the db in the new machine I get an error "there is no object in this control". It has to do with an activex object that's in use in the db (a treeview control). I don't know what I...
  10. davikokar

    Excel Automation: getting the value of a named cell

    Hallo, I have a cell with a name (example "test"). I don't know how to get the value contained in this cell. I tried: ActiveWorkbook.Names("test").Value but I get something like: =Sheet1!$A$1 Is there a way (in VBA) to obtain the value contained in a cell, by using its name, or its reference...
  11. davikokar

    accessing data in table, alternative ways

    Hallo, I was wondering if there is an alternative way of accessing the data in a table, va vba code. The code I normally use is similar to this: Set m_db = CurrentDb() Dim rs As Recordset Dim sql As String sql = "SELECT tblTest.when & tblTest.description FROM tblTest;" Set rs...
  12. davikokar

    recordset displaying only the first 255 characters

    Hallo, I have a table with two fields, one Memo and one date. In the meno field I store text longer then 255. I make a query on this table in order to combine the two fields, in sql this would be something like "SELECT [description] & [when] AS Expr1 FROM tblTest;" The query works fine...
  13. davikokar

    debugging autoexec sub in word vba project

    hallo, I have a word template that contains a module with the autoexec sub. I don' know how I can debug this sub. It is called automatically when I open word. But I need to have word open in order to place a breakpoint ? Does someone knows ? Thanks
  14. davikokar

    which .NET runtime is currently loaded in my machine?

    Hallo, I recently upgraded to VS2010 with .NET Framework 4. Where can I see the version of my currently loaded .NET runtime? Can I modify it? Thanks
  15. davikokar

    how to increase a value by one

    hallo, I have a table where in one column there are int values. I would like (given the ID of the row) to increase the value by one. Is this possible with one Stored Procedure ? Or do I have to select it, add one, and then update ? thanks
  16. davikokar

    the previous page of the user

    hallo, For example: I am in the page A of my web application, then I click a link and navigate to page B. Now I click a linkbutton in page B. Is there a way to know that the user that pushed a button in page B, came from page A ? Thanks for advice
  17. davikokar

    language of MS WORD

    Hallo, how can I find out the language of my installation of WORD ? Thanks
  18. davikokar

    using an event

    hallo is there a way to grab an event without having to modify the html code? For example, in this code I use the onmouseover event but I need to modify the html by adding the "onmouseover...": <a id="mylink" href="" onmouseover="alert('An onMouseOver event');return false">Test</a> My...
  19. davikokar

    positioning of divs

    hallo, please have a look at the picture in the attachment. There are some rectangles that represent divs. There is a container div that contains 4 colored divs. The container is centered in the browser window. The 3 div (red, pink and yellow) behave normally. The strange one is the green. It...
  20. davikokar

    in the center of the page

    hallo, I have a fixed height and fixed width div. Can I place it in the middle of the browser window by using css ? I mean place it centered, vertically and horizontally. Thanks

Part and Inventory Search

Back
Top