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. audaxviator

    Unstable Wifi

    I also observed different behaviours on each network. I still suspect the route cause is a power saving feature in the driver. I seem to recall confirming that the settings can misbehave on certain networks setups (router settings/features) but my problem laptop was a HP so didn't come across...
  2. audaxviator

    Unstable Wifi

    I suspect the Wi-Fi driver because I had a similar problem with a different brand of laptop, and I wasted too many hours trying to fix it: At one point I discovered that the OEM had released a bug fix that addressed my "keeps disconnecting" problem, but that this fix had not been released by...
  3. audaxviator

    Windows 10 And UWP Apps

    I am not saying VB cannot work, but I cautiously suggest the state of VB in 2018 resembles the state of J# in 2004. MSDN "Suggested Languages" for Win8 and Win10 are here: https://docs.microsoft.com/en-us/previous-versions/windows/apps/dn465799(v=win.10) That table alternates between C#, C++...
  4. audaxviator

    Windows 10 And UWP Apps

    UWP (Universal Windows Platform) is a single API for Microsoft's various systems (i.e. Desktop/Mobile/XBox). UWP requires some Microsoft libraries that are installed on Windows 8.1 and newer. All versions Windows 10 are UWP compatible. Large parts of the .NET API are repeated in the UWP API...
  5. audaxviator

    Mixing MSIL/CIL and UWP

    Windows 10S is probably going to be short-lived but right now it is frustrating my plans for world domination. Windows 10S differs to Home/Pro because it imposes UWP on developers. You simply cannot run an old MSI on 10S, and newly built UWP applictions target native libraries instead of...
  6. audaxviator

    Is Microsoft burrying CIL/MSIL?

    I take your point that Windows 10 forum might provide thoughts about the immediate problem, although I feared they might regurgitate Microsoft's marketing (I already tried Google). Industry Trends forum might provide alternative past/present/future insights into the MSIL/CIL strategy (which...
  7. audaxviator

    Is Microsoft burrying CIL/MSIL?

    Windows 10S is probably going to be short-lived but right now it is frustrating my plans for world domination. Windows 10S differs to Home/Pro because it imposes UWP on developers. You simply cannot run an old MSI on 10S, and newly built UWP applictions target native libraries instead of...
  8. audaxviator

    Bizarre customized gridview issue (ASPX with C#)

    I do not know ASP.NET so here a wild guess - are you making an asyncronous call? if (this._footerRow == null) { if (AppSettings.EnableAsyncModelBinding) { using (page.Context.SyncContext.AllowVoidAsyncOperationsBlock()) { EnsureChildControls(); await...
  9. audaxviator

    dont round number in excel

    If you want to display decimals in Excel you need to assign a value to the NumberFormat property on each cells (or a range of cells). MSDN: https://msdn.microsoft.com/en-us/library/office/aa206536(v=office.11).aspx C# demonstration...
  10. audaxviator

    Streaming a file to a local printer

    JScannel, your approach is not wrong, but you should explicitly P/Invoke at least seven different Windows subroutines in a specific nested order like XML: openprinter, opendoc, openpage, writebytes, closepage, closedoc, closeprinter. I speculate that your printer driver is waiting for your C#...
  11. audaxviator

    Can we migrate between .NET versions in Visual Studio?

    Hi all, First time posting. An application was originally developed in older versions of VS, and is currently maintained in Windows 10 / VS 2017. The application executes on .NET 4.0, but there are some features of .NET 4.5.1 that I would like to take advantage of. Changing the application...

Part and Inventory Search

Back
Top