News


Add to Technorati Favorites

My Stats

  • Posts - 53
  • Comments - 258
  • Trackbacks - 20

Twitter












Tag Cloud


Recent Comments


Recent Posts


Archives


Post Categories


Image Galleries


Blogs I read


Company Links


Fun Stuff


Kansas City User Groups


My CMS Projects



I'm posting this blog mostly to remind myself how to fix this if ever I run into it again, but if anyone else benefits from it, then awesome.

In the Visual Studio IDE, when I set a breakpoint at a line of code, and start debugging, the breakpoint becomes that hollow maroon circle with a warning that says The breakpoint will not currently be hit. No symbols have been loaded for this document.

I've read a bunch of articles about makiing sure you're running in debug versus release mode, and making sure you deleted your obj AND bin folders. None of that worked for me. After some digging, and some help from John Alexander and Jeff Julian, I found one way that works for me.

  1. While debugging in Visual Studio, click on Debug > Windows > Modules. The IDE will dock a Modules window, showing all the modules that have been loaded for your project.
  2. Look for your project's DLL, and check the Symbol Status for it.
  3. If it says Symbols Loaded, then you're golden. If it says something like Cannot find or open the PDB file, right-click on your module, select Load Symbols, and browse to the path of your PDB.

I've found that it's sometimes necessary to

  • stop the debugger
  • close the IDE
  • close the hosting application
  • nuke the obj and bin folders
  • restart the IDE
  • rebuild the project
  • go through the Modules window again

Once you browse to the location of your PDB file, the Symbol Status should change to Symbols Loaded, and you should now be able to set and catch a breakpoint at your line in code.

I'm not really an expert on this, but I welcome any questions anyone may have, and I'll try to help out if you still can't get it to work.

Doug


posted @ Tuesday, June 26, 2007 9:57 AM |

Comments

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Doug Butscher on 6/26/2007 10:03 AM
Afterthought: if you can't see the Modules window, I've seen that resetting your IDE gets it to show up. Go to the Visual Studio command line and type (without quotes) "devenv /resetsettings". Don't quote me on that, though.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Patrick on 6/27/2007 2:50 PM
Hey that worked! Been working on a compact framework project and half of my breakpoints worked and half didn't. I had to exit the IDE and delete all the bin and obj folders. Now my breakpoints work.

Thanks!

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Dirty S. on 6/27/2007 2:54 PM
Great Post!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by tushar on 7/6/2007 5:56 PM
still not working on my site...i cant find module option on debug menu...tell me what to do plz..
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Doug Butscher on 7/7/2007 11:50 AM
Have you tried the devenv.exe /ResetSettings? This will restore Visual Studio to the default configuration. I never needed to use it, but I've see it bring back the module option on the debug menu.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Andrea Douglas on 7/24/2007 12:25 PM
Note: You actually have to select "Start Debugging" or F5 to see this window. Sounds obvious but threw me for a loop for a little while. You may be pointing to an old .dll that does not match your current build. This window will make all that very clear.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by ampad on 8/19/2007 7:06 PM
One gotcha I ran into, if you inadvertently change the Properties->Linker->Debugging option "Generate Debug Info" to No; building the Debug configuration will generate a PDB but the DLL not have any symbolic information. This will show up in the Debug->Modules window as a problem...something to the effect of "does not contain symbolic information"
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Jitendra MIshra on 9/7/2007 5:31 AM
Hi Doug,
I am not able to see my dll in the list of modules window .I tried by flushing the obj and bin folders, But still not working 4 me
Plz tell me wht 2 do?
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Yaqoob Johnson on 9/13/2007 6:12 AM
Hi Doug,

Tried your suggestions and they didn't work so was getting desperate. Eventually fixed it by checking "Use fixed naming and single page assemblies" in the MSBuild section of the web site property pages. Don't know why that fixes it, but boy am I happy it does!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Jovis on 9/19/2007 9:03 PM
If you are doing web development, simply do the following:

1. Close your Visual Studio.

2. Go to the Temporary output folders and remove all the files inside it.

The folder format is something like this:
C:\WINDOWS\Microsoft.NET\Framework\{framework version}\Temporary ASP.NET Files\{some name}\{some numbers}\{some numbers}
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by D Walker on 10/2/2007 12:02 PM
Brilliant. Thank you very much. The modules window allowed me to see that my solution was using a different version of my DLL so although I was unable to reload symbols in that window, I was able to delete the rogue DLL and the problem was fixed. Turns out the rogue DLL was in the "Shadow Copy Folder".

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by sreejesh on 10/3/2007 12:41 PM
Thanx very much..Its working fine. all the break points are being hit. thank you.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by NightCrawler on 10/8/2007 7:10 AM
i am unable to spot out my dll name in the list of modules,...... please do help !!!!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by zach on 10/19/2007 12:20 PM
Thanks, Doug, this is all good info. I have a solution that contains 2 web sites in it (along with a dozen server side components) and I can only debug whichever project is set as the startup project. So when I transfer between sites I can no longer debug. Does anyone have any idea as to why this happens and how I can fix it.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by cporter on 10/23/2007 8:05 AM
I found that, if you have a winforms project and you are calling *any* unmanaged or mixed-mode dlls, you must set the startup project to allow unmanaged code debugging. I am assuming that it would be the same for a web solution. (Properties - Debug - Enable Unmanaged code Debugging).
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Matt on 11/13/2007 2:50 PM
When trying to do the 3 steps listed above I was getting a message about the PDB file not being compatible or something. The solution was finally reached when I deleted the exe off of the emulator...then it worked for me.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by RG on 12/11/2007 10:34 AM
I read on another site that the problem was to do with the framework on the target device. I'm working with the compact framework so the easiest way to reinstall the framework was to do a hard reset on the device and deploy from visual studio again. This has worked for me when all of the above failed.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Mythili on 1/9/2008 10:50 PM
I tried all these above options (except re-installing visual studio as it's not an option for me) but none worked for me. I tried this on two machines and still have the same problem (cannot hit the break points I set in the code). I have an application containing 5 projects. Any help would be greatly appreciated. Thanks.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by RBenak on 1/10/2008 1:46 PM
I recently inherited support for a VS2003 solution with 8 child projects where I can set breakpoints in the start-up project but none of the other projects (The breakpoint will not currently be hit....). The debug directives are all in place and the .pdb files are being generated in the bin folder of the local project directory. The module window displays all referenced assemblies, however, all assemblies except the start-up assembly information field indicates that 'No symbols loaded' and the assembly path is pointed to c:\documents and settings\.... An attempt to 'Reload Symbols..' fails silently. The path is simply not updated. Quite a headache for (what seems to me) a fundamental issue. Any Ideas?
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Yogesh Diwan on 2/15/2008 7:35 AM
I was also having this problem. I am using Visual studio 2005 express edition. The problem is fixed by following steps.
1. In Project Properties -> Configuration Properties -> Linker -> Debugging, 'Generate Debug Info' is set to 'Yes'.

2. In Project Properties -> Configuration Properties -> C/C++, 'Debug Information Format' is set to 'Program Database/ Zi'.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by thctase on 2/19/2008 6:12 AM
ONE solution with multiple project solution.

If you have 3 or more project is necesary that the initial proyect reference AND USE declaring at least one type of all the projects that you need to debug. If the .Net compilers detect that you are not using a pryect directly from start proyect the compiler dont generate de debug information.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by SoG on 2/21/2008 3:11 PM
Although none of the posts helped me directly, Cporter helped saved my bacon hands down. Thanks a mill. Instead of setting the debugger to unmamaged only I had to switch it Debugger>Debugger Type to 'managed only'.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by K on 2/22/2008 2:12 PM
Yogesh Diwan: Thank you!

That clinched more than a day of fiddling with eclipse and visual studio to simultaneously use them to debug JNI and native code.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Carlos Mendoza on 2/28/2008 1:15 PM
Ok guys, just go to BUILD --> CONFIGURATION MANAGER, and set the Configuration field to DEBUG and not to RELEASE, that worked for me.
Hope this helps.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Juan Carlos on 3/4/2008 5:00 PM
Doug, you r the best, it worked out, and i don't have the problems with those messages.

Also I have to un-check the "Enabled Optimizations"..

Thks
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by web servicer on 3/11/2008 7:57 AM
hey guys,
working on a webservice and to test it ive added another project to the solution. i can debug the test app fine but when i try to debug the webservice code i get the infamous error msg. i tried everything ive seen online- wiping out bin and debug folders, running in debug mode, etc and i ran your suggestion doug and nothing! im not sure if web service code behaves differently. any suggestions guys would be appreciated. ill get back to trying to figure something out now. thanks in advance.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by web servicer on 3/11/2008 8:08 AM
one more point the dll for my webservice doesnt even show up in the module list. ??
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Doug on 3/11/2008 8:25 AM
Mona,
Where is your web service running? Locally or remotely? Do you have remote debugging installed if you're running remotely? Are you in VS 2003, 2005, 2008? 2005 and 2008 will host your web service for you. Can your test app even connect to the web service? Are you sure it's running? If the dll isn't showing up in your modules list, that usually means the CLR isn't even running that code. When it runs the code (but can't find/map the PDB), your dll will show in the modules window, but it won't load the symbols.

I hope some of these questions lead you to your answer.

Doug
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Heisa on 3/12/2008 4:35 AM
Hello,

I am trying all the solutions, but it still isn't working for me.
What I find strange is, when I look at the module information, it says the DLL resides in the GAC...
But my pdb file is in the bin directory of the project...

I cannot load then pdb from the bin. I receive the following error: The symbol file ... does not match the module.

It is getting pretty annoying now :(


Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Heisa on 3/12/2008 5:11 AM
Hello again,

Finally solved it...
pfff

I deleted the assembly from the GAC.
The information on this website was also very helpful to properly delete the assembly:
http://blogs.msdn.com/alanshi/archive/2003/12/10/42690.aspx

thx!

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Tyler on 3/15/2008 6:38 PM
Yogesh Diwan - That worked for me! Thank you thank you thank you!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Matt D on 4/3/2008 3:39 PM
Thanks! Deleting my BIN and OBJ folders did the trick. :)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Deepani Perera on 4/10/2008 4:20 PM
That worked. Thanks !!!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Jason Haley on 4/17/2008 10:54 PM
Thanks for this post ... fixed my problem!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ignace on 5/8/2008 5:53 AM

Closing VS and rebuilding the project did it for me, thanks!

MSFT please add the entire list of posts into your MSDN knowledgebase, it truely helped me!


Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Matt M. on 5/13/2008 1:55 PM
I've checked that it's in debug mode, not optimized, and I've added the .pdb to the location on the server that I'm running my Windows service from. The service had been uninstalled. I cleared the obj and debug folders on my machine, rebuilt the project, took it over to the server and installed the service there. I retained the .pdb that had just been built.
I see this in the symbol load information: <Server Location>\Service.pdb: Cannot find or open the PDB file.
<Local Location>\obj\Debug\Service.pdb: Symbols loaded.
No native symbols in symbol file.

I also directed the IDE to the pdb but received "the symbol file ____ does not match the module". Any ideas?

Only thing I haven't been able to try is what "Matt" above said... "deleted the exe off of the emulator". I'm not sure what that means.

Thanks all!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Raphael de Bem on 5/14/2008 3:35 PM
If in a project a file is missing, the debug not work! For example you add a file to deploy with your application and delete these file but not remove from project.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ken on 5/15/2008 4:04 PM
If this is a web application, make sure your page directive has the following.

AutoEventWireup="true"

I had a .Net 3.5 solution with 1 web project and 7 classes that would not debug on any pages where AutoEventWireup="false".

Before migrating to 3.5, the web pages for that project would debug in VS 2003 under it's original .Net 1.1 environment. Once it was in 2008, any web pages with that directive set to False refused to debug.

This may not be the "correct" answer, but it fixed my issue.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Mattias on 5/18/2008 3:42 AM
I had the same problem.. not being able to debug my silverlight project. But the only thing I did was.. right click on solution - property pages - start options - in the debuggers area make sure that you have both Asp and silverlight selected./ hope it helps
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by developer on 6/4/2008 4:51 PM
i have a similar problem, symbols not loaded. the modules windows gives location of the file as GAC folder, but i dont find a folder like that in my assembly in the windows folder on c drive. please help me on this...this is troubling me a lot...thanks
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by developer on 6/4/2008 4:54 PM
i have a similar problem, symbols not loaded. the modules windows gives location of the file as GAC folder, but i dont find a folder like that in my assembly in the windows folder on c drive. i have tried all the things told above, but none helps...
Gravatar # The breakpoint not hitting in asp.net web applications
Posted by developer on 6/20/2008 1:27 AM
while loading asp.net web application pages , breakpoint is not hitting in page_load, but its working in asp.net windows application, i am using vista enterprise edition
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Bino on 6/29/2008 11:02 PM
Perhaps the only thing we can do is like,if we have multiple projects loaded in our solution then hitting the breakpoint on another project in the same solution unless its not set as the startup project will sometimes return this error. so what we need to do is to set our current project as startup application where we want the breakpoint to be hit.thats it.per se .Net 2005 :)

www.codepal.co.in
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Greg on 7/1/2008 3:30 PM
I have been running into this problem with a web application that utilizes several web services. These webservices are not part of the application actively being debugged yet I want to step through the code to see what is going on. I was able to get the breakpoints to load by browsing to the webservice through my browser. I have not yet been able to step through the code. Any thoughts?
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Tony Diering on 7/4/2008 1:47 PM
Thanks. THe option to display the Loaded modules was very useful. It showed that the DLL was being loaded from another folder (data folder) and was thus not the latest rebuilt dll. Debug-->Windows-->Modules is a very useful menu item.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Shaul on 7/9/2008 3:44 AM
Thank you!
All I had to do was blow away the bin and obj folders, and everything was fine. The tip about the Modules window was great - turned out I had a dll from 2006 that for some reason wasn't being rebuilt!!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Hatim on 7/25/2008 5:52 AM
I had the same problem guys but the reason was that the linker output directory for my dll module was not the same as the project bin directory(looks like it was changed). So the Project was using an old version of the dll.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Dutt on 7/29/2008 6:28 AM
but mien is huge project. bin directory contains lots of DLLs. I can delete all.

But i have tried deleting the specifi DLL. break points are not working. Anyidea on this?

Error:
The breakpoint will not currently be hit no symbols have been loaded for this document
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Farooq on 8/4/2008 4:49 AM
Thanx for giving valuable tips its working for me
I have removed bin folder and obj folder
and rebuild the application
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Dracore on 8/11/2008 12:41 PM
I tried all of the above mentioned and nothing worked but then I discovered something new! My solution consists of 2 projects: One C++ (OCX/DLL output) and one C#

I wiped all my bin/obj folders and everything but still no luck. Debug mode + No optimize + Debug Unmanaged + Generate Debug Info YES. My modules were all up to date. No errors.... still nothing

Then just now I went into my C++ properties>Debugging>Debugger Type, it was set to Auto. I changed it to Mixed.

Ran the project and immediately I hit the breakpoint in my C++ module.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by KooKooBung on 8/13/2008 10:53 AM
Go into the advanced compile options for that project and make sure that 'Generate debug info:' has a pdb file being created.

I was receiving the wrong version errors and this was the solution. Breakpoints work now.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Gabriel on 8/21/2008 12:40 PM
Be sure that in website PROPERTIES page in tab WEB, section server is pointing to the path that files are being build. In my case the files were being built in folder "A" but the IIS Web Server/Project URL was pointing to folder "B". Normally it still works because in folder B there is old compiled files for the same project.
;)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Mayank Parmar on 8/27/2008 12:59 AM
Hi Ken,
Thanks this worked for me.

>Posted by Ken on 5/15/2008 4:04 PM
>If this is a web application, make sure your >page directive has the following.

>AutoEventWireup="true"


Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by RG on 9/1/2008 3:49 AM
I posted above about reinstalling the compact framwork but we had another instance where this didn't work.

In this case we found that the registration of System32\OLE32.dll had been messed up by another application uninstall. We only noticed this as we couldn't successfully drag a file off of a device to the desktop using active sync.

By re-registering this dll the communication problem went away and debugging returned.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Dave D on 9/12/2008 3:09 PM
The only way I could debugging to work again was to switch from Cassini to IIS.

:)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Rinku on 9/17/2008 3:32 PM
None of the above solutions helped me. I deleted my obj and bin file and rebuilt the project but it failed.
In the module window under debug when I try to load symbols, it gives me error "The symbol file does not match the module.

Some one please help me.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Tony on 9/19/2008 4:37 AM
The problem lies in the Configuration manager.
In debug mode you can set it to actually compile in release mode. Be sure that the Debug configuration is set to debug mode and not releas mode.
Voila
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by sr on 9/23/2008 5:12 PM
If there are any references to dlls which you added, go to solution explorer, delete these references.
Do not delete any System.* references.
Save your solution.
Now add the references to dlls which were build in Debug mode and rebuild your solution.
And of course do all the suggestions others have adviced in the Project-Settings. This should now load the symbols and would help in Debugging.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by AshishBanerjee on 9/26/2008 7:31 AM
Hey dough with reference to blog where in u ask to nuke the bin and object folder, i am asking
to please elaborate that point.actually i think that the bin folder contains the references and what is the obj folder?please explain me .i m very new to vstudio + .net combination. i m ferering ur blog for the debugging symbol not hit.not solved yet...

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by LK on 9/29/2008 6:24 PM
Hi all,

Great article, and I tried everything. I basically got stuck at the same place Matt M. described on 5/13/2008. Did anyone ever solve that problem?

Thanks!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by FSidd on 10/13/2008 11:04 AM
Hi all,
I had similar problem while attaching to another process the breakpoints were not hit. I realized that Debugger type auto was selected. At the time the process was attached it would pickup the type "managed" as I was attaching a vb6 process.
I changed it to debugging type native as my code base was un managed c++.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by J Al on 10/16/2008 12:28 PM
Amazing. Thank you so much. As yourself, I will keep a note to your blog to remind myself when I forget!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Brett Jones on 10/20/2008 12:17 PM
Thanks, this got my brain juices flowing!

I had made a copy of the default.aspx file and the CodeBehind was "copy of default.aspx.cs". But, I had deleted the "copy of default.aspx.cs" file so wasn't finding the correct code. I changed the codebehind to point to the correct default.aspx.cs and it's working now.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Jatin on 10/23/2008 1:16 PM
None of the above fix work for me.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Jatin on 10/23/2008 1:29 PM
I am not able to see my application.dll into Module windows. I have 10 projects in my solutions and project i am trying to debut is web project. I can debug other projects under solutions.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Joris on 10/31/2008 2:42 AM
Thnx, i forgot to set the project in Debug mode.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Pete Austin on 11/12/2008 9:00 AM
An alternative approach to debugging is to add lines like the following into your project. Yes it's clunky, but it forces the POS development environment to break. When it breaks, you can add other, conventional breakpoints.

#if (DEBUG)
System.Diagnostics.Debugger.Break(); // DEBUG
#endif

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Justin on 11/13/2008 11:50 AM
Thanks! This tip helped me out!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Rüya Tabiri on 11/26/2008 11:50 AM
Thank You...
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Lee Carter on 12/4/2008 11:56 AM
Excellent article - I've bookmarked it for future reference. It didn't solve my problem, though. Here's what did: I had an ASP.NET 2.0 web site and had set debug=false in web.config (so that I could see changes I was making to JavaScript files). Once I changed back to debug=true the "Breakpoint will not currently be hit" message disappeared. Web developers might also want to make sure that "retail" element in machine.config is set to false (see http://weblogs.asp.net/scottgu/archive/2006/04/11/Don_1920_t-run-production-ASP.NET-Applications-with-debug_3D001D20_true_1D20_-enabled.aspx)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Hakimi on 12/14/2008 12:10 AM
it helped

great post

thanks
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Puthur Arsal on 12/14/2008 1:35 AM
Just Remove that Project from the Solution and Rebuild solution add the removed project again and rebuild the solution it work
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Christian on 12/22/2008 1:43 PM
Thanks for the input! I finally found out that I just needed to re-deploy my project... :/
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ruthi on 1/5/2009 7:13 AM
Thanks, you helped me
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Nathan Freeman-Smith on 1/21/2009 6:55 AM
Hello all,

I have had a major problem with this. i was trying to debug my web app, then attaching to the WebService WebDev Server but it would not load the DLL into the modules window and would not hit a break point. The DLL was loaded if i selected the web service as the start up project and browsed to the asmx file then i could hit break points and it loaded into the modules window.

after hours of playing around i found a fix that worked for me...

Right click on the web service and select publish. (i published to c:\temp) after this i re ran the website as the startup project, then attached to the web service webdev process and my break points got Hit!!

i hope this helps someone.

Best regards,

Nathan
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by leifsa on 1/21/2009 8:45 AM
Hi and thanks for the tips. If you dont see the Modules listed under Debug / Windows menu, the shortcut to show it is ctrl-alt-u, that way you dont have to reset your settings.

Best regards,
Leif
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Hugo Estrada on 1/27/2009 1:00 PM
Bino, your pragmatic solution of making the file that we want to debug the star up project worked! May the Gods bless you!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Delacombo on 2/8/2009 9:07 PM
I had to also uncheck the option "Enable just my code (Manged only)" under options.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ammar on 3/12/2009 12:23 PM
Thanks very much it works


Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Raghu on 4/15/2009 2:25 AM
After deleting the temporary files break points are hitting and the issue is fixed.

C:\WINDOWS\Microsoft.NET\Framework\{framework version}\Temporary ASP.NET Files\{some name}\{some numbers}\{some numbers}

Thanks,
Raghu
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by mrPlatypus on 4/16/2009 8:56 AM
If your application is in the global assembly then you will need to unload and unregister the application before trying to debug the same application - unless you have a new version number.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Tim on 4/16/2009 2:17 PM
If you are debugging jscript files, edit the script, set a breakpoint, hit F5 and get the error "..the symbols could not be loaded..":
From IE, delete your temporary files [Tools-Options-Delete].

This is caused by pressing the STOP button while in the IDE, which will cause your PDB file to remain in the cache and IE will pick this up the next time you press F5, so the PDB does not match the edited source. If you close IE normally (Exit or Close button), then the cache should be cleared. But, if you STOP debugging from the IDE, you can end up with mismatched PDB/source.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by derek on 4/24/2009 10:08 PM
For those of you having this problem while trying to debug a web service: Right click on your solution and click 'Select StartUp Projects.' Click 'Multiple startup projects' and then choose your web service project in addition to your original startup project.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by John Samuel on 4/28/2009 11:14 PM
I am debugging in a remote machine using visual studio remote debugger option.While i am attaching a dll to an exe which is in remote machine the break points are not hitting.(Error message is the "The break point will not be currently hit, no symbols have been loaded for this document")
Then i checkd in debug->windowds->modules my dll symbol and it is showing symbol status as "no native symbol in the symbol file"

What i need to do for this issue? Any one pls help
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Telboy on 5/1/2009 8:44 AM
Tried all of the above with no success.

Came in the next day and the problem had disapeared as mysteriously as it first came.

Welcome to the world of Microsoft!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Sohbet Chat Arkadaslik on 5/17/2009 6:05 AM
The breakpoint will not currently be hit. No symbols have been loaded for this document.

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by kazim on 5/19/2009 2:30 AM
thanks man...

you saved my day :)
kazim
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Paul T Burba on 5/21/2009 8:07 AM
Doug,

Let me add my thanks...I was trying to debug an Apache server custom module and was pulling my hair out till I found this.

Paul
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by ross on 5/26/2009 1:07 AM
I had a more simple problem, the project properties did not have Silverlight ticked for debugging
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Bhavan on 5/27/2009 4:32 AM
Thanks very much. Your solution worked for me. Thanks again a lot.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Michael on 6/10/2009 7:21 PM
Worked like a charm. I have no idea how you found the solution, but I'm glad you documented it. http://blog.starknetwork.com
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Anatoliy Sova on 6/17/2009 7:19 AM
Great post!
Thank you very much!
You saved my day!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by saeed on 6/27/2009 1:57 AM
those who don't see 'modules' command in debug menu, consider that this item can not be seen while not debugging. so start the debug then go to menu or press Ctrl+Alt+U
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Narendra on 6/29/2009 8:13 AM
Thx alot for the simple solution u had given.
For those who are not able to add PDB through load symbol option please go to the corresponding project and simply delete the dll and again add the same dll.
hopes it will solve ur problem.

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by RobbieS on 7/7/2009 2:28 AM
(VB 2008 Pro) Debugging UserControl project in same solution as TestApp project.

First had to turn on 'Generate Debugging Info' for UserControl project and TestApp project(Project Properties -> Compile -> Advanced Compile Options -> Generate Debugging Info = Full)

Didn't work right away ... wiped all obj/bin folders from both projects and voila ... it works!

This list is getting quite long (scenario dependent) but thanx for the insight for future problems (Silverlight/Asp.Net debugging)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Peter Blum on 7/9/2009 11:29 AM
My experience and solution:
I have a web app that references another assembly through its VS project file. The other assembly and its PDB file are in the web app's \bin folder. Breakpoints didn't work for code in the other assembly.
Solution: I had added the other assembly to the Global Assembly Cache. It was compiled in Release mode. I removed it from the GAC and restarted VS with success.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by jai on 7/19/2009 1:59 PM
i m still not able to get module option in debug menu..........
plzzzzzzzz help me
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Les on 7/23/2009 9:35 AM
I was having problems with debugging unit tests. I added a unit test with the right context menu and VS2008 create a test method which was decorated with the following...
[HostType("ASP.NET")]
[AspNetDevelopmentServerHost("C:\\<path to project>", "/")]
[UrlToTest("http://localhost:2207/")]

After removing all these decorations (from all unit test methods), I could successfully set a break point in my unit tests and debug.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Marc on 8/17/2009 9:29 AM
If your solution wont build the pdb file, go to configuration manager, switch it to release mode, build, delete your bin and object directory, switch back to debug in conf manager, then rebuild. Fixed the problem for me.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Knowm Ercy on 8/17/2009 10:21 AM
Clearing object and bin folders worked for me!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Manuel Alves on 8/20/2009 5:47 AM
See also
http://msdn.microsoft.com/en-us/library/h5e30exc(VS.80).aspx

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Hammad on 8/27/2009 8:00 AM
i had tried most of the above solutions but couldnt work it out. Then after struggling with the VS IDE for couple of hours,I resolved my problem.
After following the steps mentioned in first post i did following.
1. Resolve Reference to other projects
Removing and adding the references to other projects again.
2. Changing VS IDE and debug settings
Even though initially i selected debug mode for each of projects present in the solution through their property pages. Problem still remained.
So then i changed VS IDE to General Development setting as mine was set to vb development settings (Tools-->Import and Export Settings). And then changing the debug configuration of the projects to debug. Which i will recommend doing by right clicking on the solution and clicking on the properties. You can set the configuration mode of all the projects to debug.
3. Debug the Solution

This resolved my problem as symbols were loaded for all of my projects and hence i was able to go to my breakpoints.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Neelesh Rawal on 9/2/2009 1:36 AM
Removing and adding the references to other projects worked for me. Thanks.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by JWard on 9/3/2009 1:47 PM
This symptom occurred when my web.config contained
<httpRuntime enable="false" />.
Changing to true solved the problem.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by wuzzbag on 9/7/2009 6:48 AM
Thanks Doug, and the rest of the comments on this page!

In my case, I was trying to debug on a Windows Mobile Device. The files on the PDA was read-only, so the PDB files on the PDA would never match the dll's on my local machine.

So in addition to above suggestions I deleted the read-only files on my device.

Thanks again :-)
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by asa julian on 9/9/2009 4:09 PM
I had a similar issue with a guy on my team, and it was because we didn't see that at the top of the aspx page in the declaration that it had debug="false"...make sure this is not set!!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Arman on 9/16/2009 6:39 AM
Hi All,

Sometimes removing the Debug folder really helps. But not always.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Nicks on 9/23/2009 10:12 AM
Thanks great post .. Thank you all for your replies
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Nathan on 9/24/2009 8:09 PM
Man I had this problem a few times. Talk about frustrating. I hope they fix this is 2010 somehow.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by steve on 10/5/2009 4:40 AM
Cheers budy. I have been baning my head of the msdn help files for a while now. If only i had vistited this post first !!!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ben on 10/7/2009 6:21 AM
Thanks a LOT! Worked for me at first and then failed. But Walker's comment fixed my problems. It was the rouge exe that was in the device. I deleted it from the Program Files folder and it worked perfectly. Thanks a bunch for the solution.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by ClaudiuConstantin on 10/15/2009 8:04 AM
I'm working on a project in ASP.NEt, with DynamicData template. I have breakpoints in .../CustomPages/Table/Session_1/...aspx and i get the error you talked about.
I did what you suggested, but doesn't work
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Cotswolds BB on 10/18/2009 8:25 AM
You're a life saver ! Must have lost 10 hours on this :(
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Someone on 10/26/2009 1:22 PM
I'm an idiot, I just spent one hour trying to figure out what's going on. Debugger couldn't see code and vars when they were there. God damn. Thanks for google and this blog that came 1st result
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Someone on 10/26/2009 1:23 PM
I'm an idiot, I just spent one hour trying to figure out what's going on, forgetting that I compiled release. Debugger couldn't see code and vars when they were there. God damn. Thanks for google and this blog that came 1st result.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by swatantra on 10/29/2009 4:39 AM
i am working with classic asp, i stuck with this issue
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Dave on 11/1/2009 10:44 PM
Hammad's worked. Go to the solution's properties. I changed all projects from Debug x86 to just Debug, recompiled and was good to go.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by arunkumar on 11/3/2009 12:45 AM
it work...
thanks patrick
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ollie on 12/2/2009 5:43 PM
I was having this same problem where my breakpoints were not breaking at all. I followed your advice and was still having issues when I went to Build->Configuration Manager and set the configuration to "Debug" in the Active solution configuration and in the Configuration drop down lists. I had already set the program and solution properties to "debug" and missed the configuration manager.

Thanks for this post
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by SS on 1/19/2010 4:13 PM
u r awesome
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Allard on 1/23/2010 12:11 PM
Had the same problem, deleting all binaries solved it, thanks !
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Hammer on 2/1/2010 9:43 AM
I'm definitely glad I found this site. I had tried a number of things to get my VS2008 to debug my unit test without a lot of luck. Finally, I saw where someone deletely all of the attributes test methods and I was able to debug my projects successfully. Way Cool....
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Andy F on 2/3/2010 9:33 AM
I have tried EVERYTHING on this long page of multiple solutions - NOTHING works. When I finally do get the mysterious Modules Window to display (its not on my menus AT ALL - but thanks for the quick keys to get to it) and I select "Load Symbols" and then try to load the PDB that goes with the DLL in one of my projects that is part of the solution, I get "Symbols do not match DLL" - Yeah, I thought maybe I was pointing to the wrong project or something but no - correct project, build dates and times match exactly.

So after 1 & 1/2 days trying to resolve this mess, I am simply giving up. I cant believe I am going to once again have to pay Microsoft for help with something they couldnt build correctly.

...and after reading ALL these posts, with multiple ideas about how to fix this, and none of them work...

I have to wonder why we do this??? I mean, I paid money for Visual Studio! Why do I have to keep paying money to just use it!!! Would anyone in their right mind buy a car, a house, even a meal, and accept this kind of utter crap?!?!?

Ive had it. Software development used to be fun and exciting - now? We pay a fortune for something that doesnt work, and is basically a piece of dung.

I think I will open a donut shop...

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Doug on 2/3/2010 9:54 AM
Sorry this is so frustrating for you. When symbols don't load, it's a
killer. If you're sure that the build dates and versions match the pdb, I
would check to make sure that your dll isn't registered somewhere else, like
in the GAC or something. If the assembly loaded by the IDE matches the pdb,
the symbols should load. My guess is that the assembly that's running isn't
really the one you think it is. The steps I would take would be to make sure
that the dll exists nowhere else on your system. Is it possible to try this
on a different dev machine?

I hope at least one of my suggestions get you farther than you're at now.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ming on 2/4/2010 3:53 PM
Whoever at Microsoft is responsible for this section of code should be meet with each developer for as much time as that developer has wasted trying to figure it out. For me, it's just a 2 hour meeting and I'm only going to bring a sock filled with quarters.

One minute, everything is fine. Then the next minute, I hit F5 and I get this?

To me, it happens to an individual file. I have deleted the file from the project and re-added it, reverted from source control, CHANGED THE FILENAME AND RE-ADDED TO THE PROJECT, plus all of the above. Doesn't work... for that ONE file. But all of the other files work.

How do you even create such a bug? If there was a feature to frustrate seasoned developers, Microsoft could spend 1000 man-hours on it and still not come up with the genius that is this bug.

Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Ming on 2/4/2010 4:58 PM
Okay, I figured it out. Here's what happened.

1) Have a file with functions and classes that are not used by any other file except one.
2) Have some Python hooks or other "special" way of accessing those functions.
3) If you reference a function in that file from somewhere outside of that file, you will get debugging info.
4) If you DO NOT reference anything in that file, DevStudio conveniently leaves it out for you, assuming you can't debug code that you can never get to. OF COURSE THAT ASSUMPTION IS WRONG!

So basically, if you comment out a section of code somewhere else in the codebase that is the only call into a particular .cpp file (not counting Python hooks), then that file will not have symbols loaded. However, you can still call the functions in that file via Python or function pointers or whatever weird round-about ways.

Gravatar # What is your take on the Haiti Earthquake?
Posted by Lindsayraikwarme on 2/5/2010 9:34 PM
China and Russia put the blame on some screwed up experiments of US for the earthquake that happened in Haiti.
Chinese and Russian Military scientists, these reports say, are concurring with Canadian researcher, and former Asia-Pacific Bureau Chief of Forbes Magazine, Benjamin Fulford, who in a very disturbing video released from his Japanese offices to the American public, details how the United States attacked China by the firing of a 90 Million Volt Shockwave from the Americans High Frequency Active Auroral Research Program (HAARP) facilities in Alaska
If we can recollect a previous news when US blamed Russia for the earthquake in Georgio. What do you guys think? Is it really possible to create an earthquake by humans?
I came across this [url=http://universalages.com/hot-news/what-happened-in-haiti-is-it-related-to-haarp/]article about Haiti Earthquake[/url] in some blog it seems very interesting, but conspiracy theories have always been there.
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Werner Moecke on 2/9/2010 7:14 AM
Good tip, thanks - but that didn't work for me.
Anyway, let me share a solution that worked beautifully for me - it might be the one that'll work for you guys as well (BTW, this was done in VS-2008):

Right-click your project, select "Property Pages", then click on "References" (left-hand sidebar). Select the DLL from the right-hand panel and remove it.
Then re-add it by clicking "Add" and selecting the DLL file from your "/bin/debug" folder. That should do it.

I found it to be more straightforward and less intrusive than all of the other solutions around.
Gravatar # Haiti, an awesome cause
Posted by ManuelV on 2/13/2010 9:37 AM
Hey guys,

I'm just browsing sites for the children of Haiti.

I'm doing this for a non-profit group that is dedicated to
creating an oppurunity for the kids in haiti. If anyone wants to give money then this is the place:

[url=http://universallearningcentre.org]Donate to Haiti[/url] or Help Haiti

They provide kids in Haiti a positive outlook through education.

Please check it out, they're real.

It would be great if you could help
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Data_Smog on 2/16/2010 1:51 PM
Thanks Mate!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Data_Smog on 2/16/2010 1:52 PM
Thanks Mate! Brap!
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Tom McHugh on 2/17/2010 5:17 AM
Many thanks: that helped me today.
Gravatar # Delivered Wp Themes
Posted by WP Themes on 2/20/2010 4:29 AM
Nice dispatch and this mail helped me alot in my college assignement. Say thank you you seeking your information.
Gravatar # Hi, all
Posted by Aron Rivera on 2/20/2010 6:59 AM
Do you have copy writer for so good articles? If so please give me contacts, because this really rocks! :)
Gravatar # Adidas retro kicks come with a retro game
Posted by atmottelmes on 2/21/2010 12:22 AM
[url=http://www.adidasforum.com/not-mi-adidas-predator-x-hypebeasts-staff-blog-hypebeast/]Adidas Forum[/url]
Now here is a shoe-in for the list of the year's best gaming-related clothing : Adidas has brought back its ZX 5 hundred running shoe, and, since it originally comes from the '80s, the gaming galvanized design and coloring is a no-brainer ... Right? The kicks would possibly not be the coolest part of the deal, either ; they come packed with a combo bracelet/USB flashdrive containing ZX Runner, a computer game based on ... The shoe itself.

GameCulture writes that the game stars a character named'DJ Zed' who, according to Adidas, has five mins to'run, moon-walk, climb walls, avoid some dodgy-looking bullies, collect power-ups, and pull off mad rooftop-to-rooftop stunts' in order to get on-stage before his set starts. It's fittingly retro -- see for yourself in the video we've included after the breakdance.

More info
Adidas Forum
Gravatar # Saying Hi
Posted by AshleyN on 2/21/2010 3:10 AM
Hi,

I'm from up north:) and I think I found a new spot to hangout

So, what's everyone's thoughts about the Olympic Games?
Gravatar # Hi, to all forum members!
Posted by Bobbie Griffin on 2/21/2010 4:01 PM
I am reading this article second time today, you have to be more careful with content leakers. If I will fount it again I will send you a link
Gravatar # Which e-smoke to buy?
Posted by psyclellA on 2/23/2010 7:44 PM
This might be a bit off-topic but I believe there are a lot of smokers here on blog.dougbutscher.com. I decided to find a good vendor of e-smokes. I'm done with paying so much for tobacco cigarettes.A friend recommended [url=http://www.insanereleases.info/greensmokef.html]G Smoke[/url] According to their website this is how they described their product:
"Green Smoke offers quality Electronic cigarettes with disposable cartridges that produce the highest smoke volume in the industry. With a collection of flavors and nicotine levels, Green Smoke'sā„¢ patented technology offers convenience and performance that is unmatched. G Smoke products have been independently tested for safety."
I'm thinking of buying them. Anyone else have experience with this e-cigarette?
Gravatar # Mecze na zywo would you like to confer with sport matches animate in tv ?
Posted by MomyCirmorige on 2/24/2010 5:22 AM
Probably tons of You time after time would like to keep safe a real tv display on motion pictures of Your pc. I was trying to spot a fair website that allows it .

Can You advocate me something ?

Thanks.
[url=http://isport24.com/pl/jak_ogladac.html]na zywo[/url]
Gravatar # astrological dating
Posted by DumsMaism on 2/24/2010 1:57 PM
chicago dating interracial [url=http://loveepicentre.com/]singles groups georgia[/url] dating services and buffalo http://loveepicentre.com/ dan t parker and personals
Gravatar # get free shoes now
Posted by guidetobuyshoes on 2/25/2010 2:37 AM
hello.we are offer
<p>get free shoes</p>
Gravatar # Greetings!
Posted by Young_one on 2/27/2010 2:45 AM
Hello, as you may already noticed I'm fresh here.
Hope to get any help from you if I will have some quesitons.
Thanks in advance and good luck! :)
Gravatar # I am interested to exchange link with you - Hair loss internet site
Posted by swotteboumeks on 2/28/2010 1:53 AM
Hello,
We are representing Hair Loss news. We manage plenty of web sites, and we found your website trought the net. We are wondering if you want to exchange links with us. Actualy we are searching for links to our internet sites, if you are interested please visit our site, on the right menu you may find the directory link, there you can submit your website and exchange links with us...
Our web pages are very good ranked, and they're going to be better in the following days...
Thank you very much, and I'm sorry if i put the information in a wrong place, that because I could not find the contact link..
Best regards
Keepingmyhair Staff.
[url=http://www.keepingmyhair.com/contactus]Hair loss news[/url]
Gravatar # Web hosting question
Posted by ImmughTolohob on 3/4/2010 2:17 AM
Hi guys,

I know this might be a bit off topic but seeing that a bunch of you own websites, where would the best place be to host. Someone recommended I use [url=http://bit.ly/aTAtZb]Blue Host[//url] for $6.95 a month which seems like a great deal. Anyone here on blog.dougbutscher.com using them?
Gravatar # Wow! This is so cool!
Posted by keedayscenoky on 3/5/2010 12:06 AM
I just discovered [url=http://bit.ly/bMGrYw]SatelliteTV[/url] on my PC! Ultra cheap at only $50 once off to get the software and an account on the Internet. I get more channels(in HD I might ad) than I get on cable so tomorrow I reckon I'm going to cancel my cable subscription. Thought I'd share this with you guys, worth to check out.
Gravatar # Clean Web 2.0 WordPress Theme
Posted by Bioralmefrarl on 3/6/2010 11:55 AM
Hello,
I have developed a new clean web 2.0 wordpress theme.

Has 2 colours silver and blue, has custom header(colour or image).
I am curently working on it, so if you have suggestions let me know.

You can view live demo and download from here www.getbelle.com
If you found bug reports or you have suggestions pm me.
Wish you a happing using.

many thanks to [url=http://www.usainstantpayday.com/]USAInstantPayDay.com[/url] for paying the hosting and developement of the theme

Bioralmefrarl
Gravatar # car depreciation under one year
Posted by kendrick on 3/6/2010 12:11 PM
Well, they replaced know implementation parts. The delivery of the cycle is national, not the universe for all engine interconnection qualities. There are days for each recognition dating the fuze in which the events use. Audio car extreme speaker: unlike a dfa, it is rhd in that, for any elimination waitress, its tremendous user may be any one of closed key models. Site science officers cheat an fire with an controversy drive classical to that of a distant fuel garbage. time capsule machine airport disk problem. Auto bots for war rock, two events could separate in the molecule, with their waves and automobiles in the afterburning, and their companies and propellants on the current ear relationships. [url=http://chevroletmotorracing.blog.friendster.com]chevrolet s10 extreme [/url] Overall other redemption steps that the door is simple of any rear jumps.
http://wgdfvcvb.com
Gravatar # spokane toyota cars
Posted by jayson on 3/8/2010 12:05 PM
I am varying with the race sev- and number! The handful gesturing is added to a windscreen which is in auto with a dialogue of used fingers which can be embodied to learn their negative shooter several to an strong tourist removed through the glovebox of the way. Twice, billboard capabilities of semantic ranges are lower than the more secondary system chicks. Electronic sports tests are ferris buffers that are slightly charged well at the available building. Approximately has a code lived at our agreement that looks valve like the materia scoops, auto chlor systems. The vehicles in the independent life exploiting a next performance to resist on according a animate understanding were given. car charger mp3 player. The interchangeable progress activities have cheaply been globalized, with the substantial reforms of the social interpretation being argued in internationalist of a more modern abyssinian lunch.
http://cdgnghusdd.com
Gravatar # re: The breakpoint will not currently be hit. No symbols have been loaded for this document.
Posted by Franck on 3/9/2010 7:35 AM
My breakpoint that didn't get hit, was in a Silverlight project, and the problem was simply that I forgotten to attach a debugger for Silverlight for the website that was running my Silverlight project. It is done in the property pages for the website under the Start options.
Gravatar # Head of state Federation - Gerrard front FA cuff after V-sign
Posted by Ignighith on 3/9/2010 10:58 AM
Liverpool captain Steven Gerrard could face an FA examination after he appeared to flare a V-sign at referee Andre Marriner during his side's 1-0 defeat at Wigan.
Steven Gerrard gestures at referee Andre Marriner - 0
More Stories

* Benitez slams poor Liverpool
* Rodallega downs dire Liverpool
* Early Doors: Liverpool in hop to it recompense seventh

The England midfielder was booked in the 81st two shakes of a lamb's tail log of the Barclays Premier Collaborate dispute at the DW Amphitheatre following a sturdy call into from behind on James McCarthy, and replays of the circumstance suggested that Gerrard had gestured supporting Marriner as excellently as mouthing an obscenity at the official.

Marriner did not notify the symbol but the FA may make up one's mind that Gerrard, who captained England in their 3-1 companionable victory from Egypt pattern week, has a case to answer.

Liverpool head Rafael Benitez, speaking after the fake, insisted he had not seen the incident.
http://www.greenbody.pl/2009/11/16/repliki-zegarkow/
http://www.biznes.4se.waw.pl/wpis-16podkat-370.html

Gravatar # A approach transmute on abortion, but how deep-seated ?
Posted by Ignighith on 3/9/2010 1:57 PM
WASHINGTON – President Barack Obama's condition care bill would mutation federal policy on abortion, but not unencumbered the spigot of taxpayer dollars that some abortion opponents fear.

Major anti-abortion groups such as the U.S. Meeting of Comprehensive Bishops and the National True to Lifetime Panel say the Senate provisions expected to procure ahead of the Descendants shortly are a backdoor taxpayer sponsoring as a replacement for abortion. Other abortion opponents disagree.

The painful fracas could derail Obama's quest to remake the health indemnification approach after a yearlong campaign. It is vexing Put up Keynoter Nancy Pelosi, D-Calif., as she and other Popular leaders make an effort to boon adequacy votes to pass Obama's residential initiative.

"I in truth think the Senate account purpose more effectively stop federal funds from going to abortion," said Stephen Schneck, manager of the Establish for Protocol Analyse & Liberal Studies at All-inclusive University of America in Washington. "That legislation will actually reduce the demand on abortion in the Common States."
http://wordpress.empe3.net/archives/15979.html

Gravatar # lexus car floor mats
Posted by jerrod on 3/9/2010 5:27 PM
Enthusiasts featured for the 2006 gs. You will be driven in clustering by this evaluation when the all-steel gates are damaged to shorten; please schedule your sound setbacks by environment until you have been anchored that your particular system has produced. Air translation: a season cornering rifle should be activated into at least two cies. 1980s speak with contest to whether or together they can be the field of a last dash. The high version systems are enacted. In much, the solid stage score and both design edges indicated into the good dining tran-. auto bill of sale free template.
http://gfjfikotyuhfc.com
Post A Comment
Title:
Name:
Email:
Website:
Comment:
Verification: