Quantcast
Channel: Off-Topic Posts (Do Not Post Here) forum
Viewing all 14169 articles
Browse latest View live

Realtek RTL8188EE WLAN not working after Windows 10 auto update

$
0
0

Realtek RTL8188EE stopped picking up all WIFI signals and it just shows a RED X next to the wifi connections. It appeared in device manager for a bit, so I read up and tried to uninstall it and restarted the laptop. But now it's completely disappeared. I've tried multiple drivers and none of them work or allow me to see the WIFI adapter anymore. Plenty of people are having this issue. Is there any fix happening soon?

Windows 10 64bit

HP Laptop


Cannot Download Visual Studio 2015 ISO from DreamSpark Student (MSDN)

$
0
0
  1. Here's the whole story:

    I’ve downloaded Visual Studio Community 2015 ISO twice from my DreamSpark account using Free Download Manager (FDM). But as my internet connection is slow so I had to pause the download. But now when I resume it I get access denied error. I also entered my Hotmail credentials in Advanced section of FDM Download Window next time around but got the same error on resume. After that I tried downloading it again but this time it issued 'Accsess Denied: invalid username or password' after being 90% downloaded even though I didn't pause it for one second. Kindly, help me out on this, as this issue is getting rather frustrating. Also discussed the whole matter with DreamSpark support but in the end they said:

In my understanding you are having technical difficulties with your Visual Studio Community 2015  from your DreamSpark Subscription .

If you are a student and your access to Dreamspark Subscription came from your Scholl admin, please forward your concern to them.

If you have been verified on the DreamSpark Website (DreamSpark for Student) please seek support from the link below:

MSDN Soocial Forums

I hope this fully resolved all your concerns. Should you have any additional inquiries, you can contact me using the details below and I'll be happy to assist you.

 

Thank you for your continued support to Microsoft.

 

Have a great day!

 

Kind Regards,

 

Nelin

Microsoft DreamSpark Team

Contact Hours: 9:00 a.m. to 6:00 p.m., Monday - Friday, except holidays.



.Net Framework initialization error when try to launch application keeping .exe file on shared location i.e. server.

$
0
0
My application is compatible on .Net framework 4 and above. When I launch application by clicking on Icon , keeping .exe in my local drive, than it works fine. But When I try to launch the application , keeping my .exe in a shared location at windows server, it gives me .netframewoek initialization error.  Please suggest.

Disable | Enable control buttons

$
0
0

I am confused as to why I am able to get the code for the close button to work however none of the other buttons work.

public bool MenuCloseButton
        {
            set
            {
                if (value)
                {
                    //WinAPI.DeleteMenu(WinAPI.GetSystemMenu(pointer, false), WinAPI.SC_CLOSE, WinAPI.MF_BYCOMMAND); // get rid of x button; prevents application from being shut down...
                    WinAPI.EnableMenuItem(WinAPI.GetSystemMenu(pointer, false), WinAPI.SC_CLOSE, 0);
                }
                else
                {
                    WinAPI.EnableMenuItem(WinAPI.GetSystemMenu(pointer, false), WinAPI.SC_CLOSE, 1);
                }
            }
        }

        public bool MenuRestoreButton //needs more work
        {
            set
            {
                if (value)
                {
                    WinAPI.EnableMenuItem(WinAPI.GetSystemMenu(pointer, false), WinAPI.SC_RESTORE, 0);
                }
                else
                {
                    WinAPI.EnableMenuItem(WinAPI.GetSystemMenu(pointer, false), WinAPI.SC_RESTORE, 1);
                }
            }
        }


Dim Blondedude092 as SkypeUser

Installutil custom action fails with "System.ArgumentException: Absolute path information is required"

$
0
0

I have a msi installer with a custom action that runs InstallUtil against a managed dll. Normally this works fine, but now I have a client who have three machines where the installation fails. The error in the log from installutil is

System.ArgumentException: Absolute path information is required

If I perform the installation by hand using the same path information and using relative paths as well, everything works fine.

Does anybody have any idea on what can be causing this error?

Best regards,

Morten Fischer-Madsen

file saving/javascript/html

$
0
0
When i save some thing on my html, java. it saves the firtst time but when i make changes it dosen't work. have deleted my caches still no luck what can do. please help. I'm using sublitext 3 as an editor

james

Web Browsers for Win 10

$
0
0

I have successfully downloaded Win 10 and am operating it with certain difficulties.  The current major difficulty is that I wish to make Google Chrome my default browser since I use it most with the RSS feeds that I get.  I also with to use (but not as default) Firebox, and the new Edge for the separate things that I feel each is best at.

However, after reading and attempting to implement the many ideas I've found on various webpages, I can not get Google Chrome to be the default.   Some thingss I have already tried that failed to fix my problem are"

  1. a new Sept 2015 downloaded directly from Google of Google Chrome was installed and seemingly ready to use EXCEPT for the "make it the default" that the settings sheet makes available, but when I try to do that, I get pushed to a webpage that gives me an error message says "you'll need a new app to open this http"
  2. using the newly installed Google Chrome's own settings page to select "make this my default" which does not work because Win 10's Control Panel (in "Associate ..." and in other places I get referred to a page that says either select a Web Browser but that page has no options available (even though I have Chrome, Chromium, Firefox, Opera, and others, including I presume Edge) on my computer already installed.
  3. Even "set your default program" which lists Google Chrome, does not (when I click on Google Chrome) let "Set this program as default" or the line below "choose defaults for this program" which shows HTTP as unchecked (no matter how many times I check it and SAVE it), well, that does not work either
  4. The "Associate a file type with a program" listing shows both .htm and html as Google Chrome designates (as I would hope it would) but when I wish to open a RSS feed with my default browser, the error message says "you'll need a new app to open this http"

My personal feeling is that the my inability to place a HTTP protocol on the list where ONLY the HTTPS protocol shows up is a MAJOR FLAW in my solving this problem and related problems


I have troubles in Visual Studio to Create CrystalReport

$
0
0
  When I create a WebForm in Visual Studio designer.aspx.cs file is not creating, and i have Create some Reports file that is only .rpt file created and .cs is not created. Now i cannot take an instance of the Report class to assign some datasource and preview it. what is the problem?

Undesired result - Ajax Call with MVC Action Filtering

$
0
0

Dear All

My situation as below:
I am working on a MVC website.
User required to login before using and the login data will be stored in session for 10mins.

In the 'Order Summary' page, there is a button trigger Ajax call to an action 'GetOrderSummary' in MVC controller 'OrderSummaryController'.
The 'GetOrderSummary' action access database and return the result as a partial view.

I added an Action Filtering to 'OrderSummaryController' which control the access by checking the session data.
If the checking is failed, it redirect to login page.

My problem is:
When user clicks the button after 10mins i.e. the session data was lost.
The partial view result auto redirect to the login page, so the partial view result becomes the login page instead of actual order summary result.
What I expect is redirect the whole page to login page but not just the result area become login page.

What is the best approach solving that?  thanks.



Best Regards
mintssoul

Is there an equivalent to Session_End event of InProc which can be triggered on session timeout in "StateServer" mode?

$
0
0

Hi,

We are using sessionState mode ="InProc" in our application and the timeout is set to '60' so the user’s session times out after 60 minutes. In this case, Session_End event of global.asax gets triggered in which we are logging the user’s logout date and time.
When we set the sessionState mode as "StateServer" then the Session_End event does not triggered as it is only supported in "InProc" mode. Due to this the user’s logout information i.e. date and time does not get maintained.

Could you please let us know if there is any alternative or an equivalent event available which can be triggered on session timeout in "StateServer" mode?

Thank you.

Building ASP.NET application, does the CDNs cascade to other pages with the libraries added from the Site.Master page?

$
0
0

I have created an application that utilizes a couple CDNS. Though I am unsure if one of them is working or not. The code calls some javascript.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="List.aspx.cs" Inherits="List" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html ng-app xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title></head><body ng-controller="listController"><form id="form1" runat="server"><div id="listTable"><table><thead>Application List</thead><tr><div ng-repeat="Items List" class="ListItem"><th>Name</th><td>{{items.id}}</td></tr></table></div></div></form></body></html>

Though something in my code is not utilizing the javascript libraries(AngularJs in this case), that I added to the Site.Master page. How do I verify this is working? I've tried to modify the javascript files though nothing is revealing to me what is going on...

Legacy Code Examples in MSDN articles?

$
0
0

Hello,  Is there an official reason that MSDN is now labeling the examples "Legacy Code Examples"?  What fits the definition for "Legacy Code"?

https://msdn.microsoft.com/en-us/library/system.datetime.day%28v=vs.110%29.aspx

For example,

'Legacy Code Example
'The following example demonstrates the Day property.
'C#C++VB
Dim moment As New System.DateTime(1999, 1, 13, 3, 57, 32, 11)

' Year gets 1999.
Dim year As Integer = moment.Year

' Month gets 1 (January).
Dim month As Integer = moment.Month

' Day gets 13.
Dim day As Integer = moment.Day

' Hour gets 3.
Dim hour As Integer = moment.Hour

' Minute gets 57.
Dim minute As Integer = moment.Minute

' Second gets 32.
Dim second As Integer = moment.Second

' Millisecond gets 11.
Dim millisecond As Integer = moment.Millisecond

Single Sing On In MVC application

$
0
0

Hi all,

I am new to MVC development I have created three MVC websites, everything is working fine when accessed each website individually. Each Web site has a login screen wherein the user logs in.

Now I want to implement Single Sign On (SSO) for all the three websites which I have developed in MVC. I do not want to use ADFS(Active Directory Federation Services) for this purpose. Because I don't have access to ADFS.

My purpose of implementing SSO is that once a user logs in a website and authenticates himself and the user should not be prompted with login screen asking for username and password. Once user logs in and authenticates for a website then other websites should be accessible without asking for login details.

Could you guys help me how to implement SSO (single Sign on ) in MVC.

Thanks,

Why we can't have snapchat ? WHY i will change my phone for this , for all my friends , familly an others , because we all have snapchat and we still want !!!!!!!!!!!!!! But on windows phone we can't !!!!!!!

$
0
0
Why we can't have snapchat ? WHY i will change my phone for this , for all my friends , familly an others , because we all have snapchat and we still want !!!!!!!!!!!!!!  But on windows phone we can't !!!!!!! 

How to Develop WebAPI to be used in Android App by using existing Asp.net C# project functions

$
0
0

Hello friends,

My company is using a portal and is working to develop android app of same.How I can develop WebAPI of  all existing functions and events so that it can be used in Android Application.

I am using below technology.

1-Sharepoint 2007,Visual studio 2008,ASP.NET

2-In my current project Asp.Net user control is used and deployed on sharepoint WebApplication.




Vishal Goyal


Issue with LocalDB in Visual studio community 2015

$
0
0

Hi,

I have recently installed visual studio community 2015 and when I run the VS MVC Application to learn about Identity, I am not able to do it as there was an error. When I try to register by providing my email and password, it returns the following error. What should I do to solve this. Please let me know.   

Thanks in advance,

Deepak Desaraju

Is MS Connect site broken?

$
0
0

Hi everybody,

Today the Connect issue I recently submitted could not be found (getting 'Page not found') link. Ok, I tried to send an email using a Help/Feedback form. After I clicked on 'Submit' the issue button I was greeted with the same 'Page not found' error.

So, my Connect item disappeared and I am unable to send email to MS about this problem either. Lovely!


For every expert, there is an equal and opposite expert. - Becker's Law


My blog


My TechNet articles

editable PDFs containing pictures

$
0
0

I've just set up a company supplying teachers to schools and I need an A4 work confirmation size template containing text and a photo that I can edit and is compatible with Macbooks?

With IT I am positively neandethal...any worthwhile advice would be welcome!

Web form looks perfect on some screens but distorts on others

$
0
0

I have a web form I made for users.

When I publish and run from my PC it looks perfect, but on other PCs using different make screens some of the parts of the form, like labels that have titles above the gridboxes, have them shift and not align with the gridboxes.

Any idea why?

Thanks.

Privilege of a switched Microsoft Account in Win 10

$
0
0

Hi,

I switched to a Microsoft account from a local account (within administrators group) in Win10 OS, I can see this MS account is also of an administrator member, but when I install a software it reports failed to register a dll in C:\Windows\system32,

09/18/15 01:40:21 Posting error message 28053

whereas I can install this software successfully with the corresponding local account, I wonder if there is any difference between these 2 kinds of accounts?

When do this in a Win 8.1, I was prompted to input password (of the MS account I've already logged in) then I can start the installation and all the installation completed successfully. No this kind of prompt in Win 10.

Any idea on this?

Thanks,

Jianjun

Viewing all 14169 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>