Bit of an odd problem here I can't seem to figure out.. I have an older project that sends e-mails to SMS numbers. I haven't touched it in about 5 months and decided to revisit today. However, when I loaded the project all of the code is gone and the form1 design is as well. No changes have been made or anything since I last messed with it back in May. The odd part is that when I hit 'Play' the form loads up with the dropdown still populated and everything.. Has anyone encountered this or know of a way to get the code/design form back?
Attaching a few images to try and show what I'm talking about.
Form Open
Form Code
It could be possible that your some of the file got hidden. May be you can try to see all files in your project location by clicking Show All Files icon from solution explorer and then you have to include them in your project again to see it through visual studio.
Related
When we debug an MVC5 application, links are provided to access the running scripts as shown below. This is for a basic MVC5 application that has had absolutely no modifications:
If we simply refresh the screen 3 times on the home page, the list displayed gets longer as shown below:
I've never really tried to debug a script yet. I have used the html links to view pages and I understand I can open one of the .js files, set a breakpoint and try to debug a script. But why are there so many links?. I would have thought I only need a single link for any given script or page that is in progress; that the links would go away when the script or page is no longer active. Clearly I'm missing something about the constantly growing list.
Could someone provide a brief explanation of this feature and how I will use it. My book on Visual Studio mentions this feature, but doesn't provide enough text for me to get a handle on this aspect of the feature.
This looks like a bug in the Edge debug adapter. Specifically, the adapter is supposed to send an event when the page refreshes (or a navigation occurs) to clear out old scripts that are no longer valid for the new execution context (here's a link to the event description in the debug adapter protocol if you're curious).
We've opened an issue on the GitHub project where you can track the progress of the fix.
For a workaround in the mean time, if you click on the bottom-most duplicate script in the list, that should be the latest loaded version, and should work without error.
*EDIT:
We've got a fix for the issue which should be out with 16.2 Preview 2 of Visual Studio.
I know, there are questions like this on StackOverflow.
But this one is new... The itunesconnect UI changed a couple of days ago. Now I need to remove the build from review (Waiting for Review now), but there is no link to do so.
What should I do?
To reproduce this problem, upload a build into itunesconnect and submit it. Now how remove that build from review?
ScreenShot:
Maybe this explains what is happening, one build is processing forever (maybe it doesn't allow other builds to process?):
After 3 days waiting, the button finally appeared! Apple, please do fix this bug.
My Apps > App Store > iOS App
"remove this version from review." link is showing? You can remove build from review.
If this link not appearing, try rejecting the build on your iTunesConnect iPhone app.
https://itunes.apple.com/us/app/itunes-connect/id376771144?mt=8
You need to first upload a new binary with a new version number to be able to submit a new build. When the binary is finished to be processed, and only at that time, the dialog will appear at the top of the page.
missing link to remove from review can happen at times.
in such case, you should be able to reject the binary using iTunes Connect iOS app (or the newly released AppStore Connect app)
I have inherited a install shield project that was using 2010. I upgraded to 2012 IS professional.
I also downloaded the skin customization kit which encounters the following problem. I am trying to use this customization kit to generate new skin file as
CreateSkinFile.exe C:\MySkinFilesSrc C:\CustomizedSkins\setup.isn
It opens and closes immediately. There is no scope of reading the error that it displayed as it opens a new window and closes in a sub-second. There is no log, no trace on what exactly it is complaining.
Is there any way to trouble shoot this and see what the problem is? The ini file is in order per the customization kit guidelines.
btw: I wanted to make sure that I am doing the right thing. I took one of their clown examples and tried to generate a skin using it. That also fails in a similar way. Added to that I used the skin customization kit to extract and used the same exacted ones to make a skin and that fails too.
Here is what i have found and i hope it helps others.
The kit is written very poorely, as it does not have any verbose or proper error reporting. It opens and closes so fast a human cannot read. Having said that i found that:
The kit that the account representative gave me is for 2012 Spring. Once i rectified that, the problem remains.
The root cause is that, one of images in the skin file does not exist. I have number of images, and i was not careful to look at every one of them. Once i went through and made sure every image is present in the directory, the CreateSkinFile went ahead and generated the ISN file successfully.
Hope it helps some one else.
I'm a little bit reluctant as to ask question, as it was asked already here, but the problem is, it wasn't answered sufficiently enough, so I'm forced to ask it second time.
So, just as previously mentioned asker I'm trying to create new project in Microsoft Visual 2010. And instead of showing normal window, it prompts me to save .html file, as shown in picture below.
Saving it and that opening it results in the following window:
though it does nothing - just page with no influence over the project at all.
Notably, this happens not only for Win32 application, but for MFC applications too.
As for the cause of this I don't know of it. As you can see from first screenshot, I was doing Web applications before hand, but I didn't change any of preferences at all (though, my guess is that it's somehow connected).
As for solving this issue, I tried uninstalling IE8, as stated in previous topic, but that didn't help. Also, I tried doing Tools -> Import & Export Settings -> Reset, but it didn't help either.
Please, if someone know solution for this, tell me - I'm out of my wits with this problem.
This problem is occurred because some Visual studio setting is corrupted.
I'd like to recommend to reset settings like following
start > Run> devenv.exe /resetsettings
Unfortunately, many parts of this case related to disturbing or collisions among files. In my experience, some programmes, which were installed recently, might cause this concern.
I'd like to recommend to install all service packs and update patches for VS 2010 and then try it again. If it doesn't fixed, reinstalling VS will be a relevant solution for saving your time and conserving your passion.
I've been working with my web application for a long time, and recently two of the asmx files have started behaving rather oddly. As far as I know, nobody has touched them in ages, but suddenly when I go to build the website it fails because custom classes being called in the asmx file aren't recognized, when all the other pages that use them are fine.
The weird thing is, if I individually click on the asmx file and select "Rebuild Page" for both of them, everything works fine until the next time I try to build the website.
Does anyone know what I can do to fix this issue? It's become a rather large annoyance, though I'm still able to work around it. Anything is helpful, even if it's just steps to follow to troubleshoot.
An example of some of the errors I get is:
Type expected
Type "Class.Subclass" is undefined
I finally figured it out :) It seems like the problem had to do with a class both of the .asmx files were using. I opened up the class, right clicked and used the Visual Studio "Rename" feature to give it (and all usages of it) a different name and the error no longer occurs.