Search results for query: *

  • Users: daverage
  • Content: Threads
  • Order by date
  1. daverage

    GetFiles and shortcuts

    Hi all. I am using getfiles to loop through all the files on my desktop and sort them. The trouble is it only picks up some of the shortcut files (looking for the lnk extension) Is there any way of forcing it to pick up all of them. Also is there a way of getting the file type (not just the...
  2. daverage

    Test .net 2 is installed then run app from cd

    Hey all. I have an application that I want to autrun from a cd, without installation. It is written in vb2005 so needs .net 2 framework. How can I check if the framework is installed, install it if it is not then run the application. I tried clickonce, but it installs the app to a cache folder...
  3. daverage

    TransparencyKey and cleartype

    I am trying to draw a monthcalendar control onto the desktop. I am using TransparencyKey and setting it to yellow for the form, then setting the background colour of the calendar to yellow. This works great unless I have cleartype enabled, then it is just a mess. Is there a way around this. I...
  4. daverage

    monthcalendar UpdateBoldedDates() problem

    if i use the follwing code on the DateChanged event and use the arrow button to move month, the month just keeps changing automatically nd i can not stop it If currentMonth <> e.Start.Month Then currentMonth = e.Start.Month ' getgCal(loadCal.textbox_gCalURL.Text, currentMonth)...
  5. daverage

    Find and replace dialog

    How do yu show and se the find and replace dialog with a text box in vb 2005?
  6. daverage

    monthcalendar tooltip

    Is there a way to get a tool tip for a date on a monthcalendar control??
  7. daverage

    xmlns prevents me parsing xml document

    I have the following xml <feed xmlns='http://www.w3.org/2005/Atom' xmlns:OpenSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:gCal='http://schemas.google.com/gCal/2005'> <entry>adasd a</entry> </feed> using this code Dim xd As New...
  8. daverage

    Talking to USB

    With VB 2005 how would I go about talking to a usb device. For instance my phone when it is connected to my pc...i would like to be able to find it and maybe capture data being send from it? Thanks
  9. daverage

    Datagridview cell balloon tip

    Is it possble to give a cell in a datagridveiw a balloon tooltip?
  10. daverage

    Datagridview row height

    Is it possible to set the height of a row based on the contents of a wrap enabled cell?
  11. daverage

    Convert string to system font

    Is it possible to convert this string [Font: Name=Microsoft Sans Serif, Size=8.25, Units=3, GdiCharSet=0, GdiVerticalFont=False] into a system font Basically i am saving the font details as a string then wanting to recall them.
  12. daverage

    Create a new node from xPath

    Hi all Is it possible to create a node/element in an xml doc that from an xPath. What I am doing is checking to see if it exists. If it doesnt I want to create it from the xPath query. For example check "//Appearance//OnTop" if it is nothing then use it to create the OnTop node Is that...
Back
Top