I'm stuck! I have this very simple test code and I can't get it to compile! I have used the same code many times before but now it won't work!
I have this simple program
#include <vector>
#include <iostream>
#include "Rswap.h"
using namespace std;
int main(){
Rswap test();
cin.get();
return 0;}
And then the rswap.cpp...
#include ...
Hi guys!
I did my Hello World! program in Visual Studio 2010 C++, it does work all ok (except that if I enter 2 times it will close, it's normal?)
But there is a little "error message" or whatever that appear in the debug log:
'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
What does that mean?
You can see my code...
Man, I'm having a rough day.
I have a ASP.NET 2.0 application with AJAX extensions and I want to debug an unruly function. When I press Debug, it goes to compile the site, but it errors out :
Error 945 Request for the permission of type
'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral,
PublicKeyToken...
I am getting this error when I deploy to my iPad. It does not occur in the simulator.
My ipad app has three UIWebViews. The majority of this application is written completely as a web app, and uses CSS to make it look more native. Links that are clicked in the various web views will open in a certain one depending on the value of the re...
I downloaded and installed Python 3.1.2 on Windows 7 x64. But it seems that it's not working as expected, for example:
Please help me figure out, what's wrong here?
...
Hello everyone,
I am encountering the following error message whenever I compile my project in Adobe Flash CS4:
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display::DisplayObjectContainer/removeChild()
at stageRotation/spawnParticle()
at flash.utils::Timer/_timerDispatch()...
Hello,
got a interesting problem. I placed a c# .net .exe file on a network share. If i try to
Start->Run: \\hostname\test.exe
my software starts properly and everything is working.
We also have a DNS Alias set for this computer, so if I try to run my program by:
Start->Run: \\mydnsalias\test.exe
My programm will cause an error me...
I use sql server 2005 enterprise, windows server 2003.
I try execute osql.exe command, for execute sql file in my server DESSQL:
osql.exe -E -n-1 -i"CarpetaUno\TextFile1.sql"
I get this error:
Msg 102, Level 15, State 1, Server DESSQL, Line 1
Incorrect syntax near 'n'
UPDATE:
I try this too,
osql.exe -E -i"CarpetaUno\TextFile1.s...
Hello
Today I try to compile my first GWT project (using Eclipse). It has default 'en' location and also 'bg' location. I'm using ui.xml files with corresponding properties files.
The only problem that I have is that project doesn't work in Internet Explorer 8. No problems with Firefox and Chrome. The start screen is ok, but when I upl...
Hi Guys,
I have .aspx file with some simple logic. This file can be accessed only using HTTP Post method. My problem is that in some registration form (regnow) they ask me to supply the url (my .aspx url) and the access method (Post or Get). I select the Post and then they try to access the url and get HTTP 411 error (header missing cont...
Running very low on ideas here. I've got a case where I'm using SqlBulkCopy to pump data into a DB, and about halfway through I run into different exceptions (primary key violations, index violations, etc).
I've confirmed that the violations are in fact true and need to be corrected in the data. What's infuriating, though, is that if I ...
If I run it. It returns no errors. And in firebug it does in fact select the proper elements in the DOM.
If I break it apart and do something like this :
$('img[hspace]').css('marginLeft', ($('img[hspace]').attr('hspace') / 2) + 'px')
That works.
Here's the monster in its entirety.
$('img[hspace]').each(function(el){
var pixel...
Hi , my xcode iphone / ipad app crashes when it hits main() upon calling NSApplicationMain()
only in ipad build not iphone build any help any one!!!
...
I'm attempting to execute an SSIS package on SQL 2005 using the following:
dtexec /SQL "\MyPackageName" /SERVER mssql1 /MAXCONCURRENT " -1 " /CHECKPOINTING OFF
/SET "\Package.Variables[FileFolder].Value";"\\SomeServer\Someshare\Output Batch\"
this yields:
Option "Batch " is not valid.
The space at the end of the word Batch inside ...
Ok so here is the assignment:
Create a simple picture viewer that will allow the user to click a button and then select an image from the file system and have that image displayed in a JLabel.
Here is the code I have:
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.Imag...
Hi, all!
The following is an unexpected warning message the server is giving me:
Warning: DOMDocument::loadHTML() [domdocument.loadhtml]: ID page3 already defined in Entity, line: 25 in C:\Program Files\Zend\Apache2\htdocs\joom\templates\valueTemplate\updateRecord.php on line 74
.
.
The above warning message is generated upon executi...
I am getting an compiler warning / error at compile time using NetBeans 6.9 with some Java code that is:
run: 2010-07-27 22:43:47.392 java[18743:903] NSKeyBindingManager: Bad key binding atom for '6' = 'D' BUILD SUCCESSFUL (total time: 5 seconds)
The code still runs. Is this anything to worry about? I would post the code, but it se...
my site show this error
System.Data.OleDb.OleDbException: System resource exceeded.
and now my site is not open
www.pakcarid.com
i this i use many connection open
that's why
i use this script every time
i dont no what's the real error of site
DataSet ds99 = new DataSet();
OleDbDataAdapter da99 = new OleDbDataAdapter(cmd9...
Hi,
When I add AutoPostback = True to my DropDownList (with OnSelectedIndexChanged) I get a System.ArgumentNullException: Value cannot be null.
My control looks like this:
<asp:DropDownList ID="dropdown" runat="server" AutoPostBack="true" OnSelectedIndexChanged="dropdown_OnSelectedIndexChanged" />
And code to fill control:
dr...
I maintain a program written in Delphi 6. It loads some bpl package files dynamically using SysUtils.LoadPackage. Often I change something in the program that causes a package to fail to load. When this happens a message box appears and then an exception is thrown. The message box and exception are separate.
Here's an example of the mes...