Search Results

Search found 8 results on 1 pages for 'adam0101'.

Page 1/1 | 1 

  • Can I use a display driver from Windows 8 in Windows 7?

    - by adam0101
    My latest display driver doesn't support WDDM 1.0, and I need it to be at least version 1.1. I've been attempting to get the Windows Phone 7 SDK working on my HP Pavillion dv9000, but the phone emulator requires 1.1 or higher. My drivers are as up-to-date as they can get. I even tried a modded driver found here, but no go. Then, while evaluating Windows 8 Developer Preview on a different partition I noticed that dxdiag.exe showed it was using WDDM 1.2. I tried installing Windows Phone 7 SDK on Windows 8, but I get an "Internal Error" popup and "Connection failed because of invalid command-line arguments" in the error window in Visual Studio. I'm guessing because Windows Phone 7 SDK isn't supported on Windows 8 yet. So my question is this: Can I get Windows 7 to use the display driver Windows 8 is using to get WDDM 1.2 on Windows 7 and how would I go about doing it?

    Read the article

  • Why won't my anonymous function fire on grid.prerender?

    - by adam0101
    In my gridview I have fields for inserting a new record in the footer. In my objectdatasource selecting event if no records came back I bind a single mock row to force the footer to show so they can still add records. Since the row does not contain real data I hide the row. ... If result.ItemCount = 0 Then result = mockRow AddHandler mygridview.PreRender, AddressOf HideRow End If End Sub Private Sub HideRow(ByVal sender as Object, ByVal e as EventArgs) mygridview.Rows(0).Visible = False End Sub This works fine. However, I'd like to condense it like this: ... If result.ItemCount = 0 Then result = mockRow AddHandler mygridview.PreRender, Function() mygridview.Rows(0).Visible = False End If End Sub This compiles fine, but the row doesn't get hidden. Can anyone tell me why my anonymous function isn't getting hit?

    Read the article

  • Can Log4net have multiple appenders write to the same file?

    - by adam0101
    I'm using a RollingFileAppender to log some info to a file with a conversionPattern (in the web.config) that looks like this for the header of each log section: <conversionPattern value="%date - %property{userId} - %property{method}%newline--------------------------------%newline%message%newline%newline"/> I'd like to log details under this header as bullet points. I'm currently trying to use another RollingFileAppender that logs to the same file with a simple conversionPattern of just a dash, like this: <conversionPattern value="- %message%newline"/> But these messages aren't making it into the log file. I'm using Log.Info() for the header and Log.Debug() for the bullet points and filtering each appender on their respective log levels. Is what I'm trying to do possible? Or is there a better way to get header and detail information into a log file from log4net?

    Read the article

  • How to migrate large amounts of data from old database to new

    - by adam0101
    I need to move a huge amount of data from a couple tables in an old database to a couple different tables in a new database. The databases are SQL Server 2005 and are on the same box and sql server instance. I was told that if I try to do it all in one shot that the transaction log would fill up. Is there a way to disable the transaction log per table? If not, what is a good method for doing this? Would a cursor do it? This is just a one-time conversion.

    Read the article

  • Utility to combine querystrings?

    - by adam0101
    Is there a utility to combine querystrings? I'm looking for something like: Input: Combine("test=a&test2=b", "test3=c") Result: "test=a&test2=b&test3=c" Input: Combine("test=a&test2=b", "") Result: "test=a&test2=b" Input: Combine("", "test3=c") Result: "test3=c" And maybe some weird ones: Input: Combine("&test=a&test2=b", "?test3=c") Result: "test=a&test2=b&test3=c"

    Read the article

1