I'm using TortoiseSVN and Visual Studio 2008.
Is there any way to update my project's subversion with svn's version in every build?
For example, 1.0.0.[svn's version] - 1.0.0.12
I'm trying to run a command to install bespinclient on my Windows laptop but every time I execute the command python bootstrap.py --no-site-packages, I get an error saying:
ImportError: No module named
simplejson
I'm using Mozilla build tools to run these Linux commands.
I'm trying to build a SQLCe table structure dynamically using a dataset as the temporary table structure...
Is there a SqlConnection string that will work with SqlCe?
There used to be a SqlCeConnection...but I don't find that in the 4.0 framework? Has something replaced this?
If the answer is L2S or Entity Framework...can I add columns to SqlCe tables at runtime?
If so...how?
I need to stop, deploy my ear file and start Jboss server using the Ant tasks.
I am able to compile, build and deploy my J2EE application as an ear file into the JBoss server successfully using Ant tasks. We can see the redeployment of my application in the jboss console. I want to stop the server before deployment and start the server.
Is there any way to do this ?
Hi friend,
I am trying to build an Android Soft keyboard application using avail code at
http://developer.android.com/resources/samples/SoftKeyboard/index.html
I want to rounded key like iPhone.
please suggest me.
Thanks in Advance.
All of us who work with relational databases have learned (or are learning) that SQL is different. Eliciting the desired results, and doing so efficiently, involves a tedious process partly characterized by learning unfamiliar paradigms, and finding out that some of our most familiar programming patterns don't work here. What are the most common antipatterns you've seen (or your self committed), whether generic or product-specific, whether in SQL statements directly, or in the ways applications build and apply them?
I want to include/embed an Excel worksheet with a predefined layout in an Excel Add-in, but I cannot add a project item "Workbook" to my VSTO project nor can I add a reference to a "Excel Workbook" project. So how can I do this?
My aim is to build an Excel Add-in which adds a new worksheet to an existing workbook (which is a download from SAP) to aggregate data.
Sven
I need to add some lightweight syntactic sugar to JavaScript source code, and process it using a JavaScript-based build system. Are there any open source JavaScript parsers written in JavaScript? And are they reasonably fast when run on top of V8 or a similar high-performance JavaScript implementation?
Thank you for any pointers you can provide!
Hi ,
I'm working on a j2me application and i'm using j2me polish. when i deploy the application on any touch screen devices like Nokia N97 / Samsung Omnia the on-screen keyboard comes by default. I need to go to the installed applications and disable it everytime i install the applicaton. Is there any way by adding some property in the build.xml to disable the on-screen keyboard.
Is there any way to disable the use of the "dynamic" keyword in .net 4?
I thought the Code Analysis feature of VS2010 might have a rule to fail the build if the dynamic keyword is used but I couldn't fine one.
i'm using QT Creator 1.3.1 and trying to compile, but get this error...
please help me get rid of it
mingw32-make[1]: Leaving directory `C:/Documents and Settings/eyalk/My Documents/My QT Projects/XML'
mingw32-make: Leaving directory `C:/Documents and Settings/eyalk/My Documents/My QT Projects/XML'
'C:/Qt/2010.02.1/qt/bin\moc.exe' is not recognized as an internal or external command,
operable program or batch file.
mingw32-make[1]: *** [debug/moc_mainwindow.cpp] Error 1
mingw32-make: *** [debug] Error 2
Exited with code 2.
Error while building project XML
When executing build step 'Make'
I have been working on social application development for some time now. I now need to build an application which makes use of friend of friends data. Any info like friend count, interest, location etc. would be helpful.
Here's the list I have till now
1) Networks where you can find info about your friend of friends
Twitter,Digg
2) Complement
Facebook, MySpace, Orkut
I am more interested in the latter category. Any help will be appreciated.
I'm using Archlinux and I find I don't need Idle when I'm coding Python.
Here is the part of default PKGBUILD file:
./configure --prefix=/usr \
--enable-shared \
--with-threads \
--with-computed-gotos \
--enable-ipv6 \
--with-valgrind \
--with-system-expat \
--with-dbmliborder=gdbm:ndbm \
--with-system-ffi
Can I build python without installing Idle?
Thanks in advance.
If you build a projection like this:
t = Arel::Table.new(:projects)
ps = t.project(t[:id].as(:snark))
How do you get the result column that's named :snark?
Hello,
I have a Visual Studio 2005 solution. Every time I try to run the startup project (C++), the project gets build again, although I did not make any change.
How can I get the normal, sane behaviour, where projects get built only when needed?
How can I debug the problem further?
Thanks,
We're having a serious issue at work. We've discovered that after the station where the client was running is locked/unlocked the client is blocked. No repaint. So the UI thread is blocked with something. Looking at the callstack of the UI thread (thread 0) using windbg we see that a UserPreferenceChanged event gets raised. It is marshalled through a WindowsFormsSynchronizationContext using it's controlToSend field to the UI. It gets blocked by a call to the marshalling control. The method called is MarshaledInvoke it builds a
ThreadMethodEntry entry = new ThreadMethodEntry(caller, method, args, synchronous, executionContext);
This entry is supposed to do the magic. The call is a synchronous call and because of that (still in the MarshaledInvoke of the Control class) the wait call is reached:
if (!entry.IsCompleted)
{
this.WaitForWaitHandle(entry.AsyncWaitHandle);
}
The last thing that i can see on the stack is the WaitOne called on the previously mentioned AsyncWaitHandle.
This is very annoying because having just the callstack of the runtime and not one of our methods being invoked we cannot really point to a bug in our code.
I might be wrong, but I'm guessing that the marshaling control is not "marshaling" to the ui thread. But another one...i don't really know which one because the other threads are being used by us and are blocked...maybe this is the issue. But none of the other threads are running a message loop. This is very annoying.
We had some issues in the past with marshaling controls to the right ui thread. That is because the first form that is constructed is a splash form. Which is not the main form. We used to use the main form to marshal call to the ui thread. But from time to time some calls would go to a non ui thread and some grids would broke with a big red X on them. I fixed this by creating a specific class:
public class WindowsFormsSynchronizer
{
private static readonly WindowsFormsSynchronizationContext = new WindowsFormsSynchronizationContext();
//Methods are following that would build the same interface of the synchronization context.
}
This class gets build as one of the first objects in the first form being constructed.
We've noticed some other strange thing. Looking at the heap there are 7 WindowsFormsSynchronizationContext objects. 6 of these have the same instance of controlToSend, and the other one has some different instance of controlToSend. This last one is the one that should marshal the calls to the UI.
I don't have any other idea...maybe some of you guys had this same issue?
Have a little conundrum, when I debug my air app. It goes through the build process and seemingly launches. I can see the process in windows task manager, but can not see the actual application.
Kind of strange I know. If anyone has had the same problem and can offer a shortcut to success, I'd much appreciate a pointer.
Thanks
I have a couple of concerns, I'm busy building a normal .mobi site for a client, so basically how I understand this is keep it simply since most phones do not support JavaScript and have a small screen etc. So I build a mobi site using only content and basic links. Now my question is how do mobi widgets work on a mobile site? I've googled and could not find a answer? Is this possible at all?
Is there a way to automate code signing a VBA project in a Word 2003 and/or Word 2007 document?
By automate I mean via a command line utility or via Word VBA automation?
Motivation: I would like to code sign several Word templates as part of an automated daily build and distribution cycle. Right now we have to do this manually by opening each document in Word and resigning.
Thank you,
Malcolm
Background: i'm using InstantRails 2.0
I'm wanted to add a new column to an existing table using the following syntax:
ruby script/generate migration add_fieldname_to_tablename fieldname:string
So I tried
ruby script/generate migration add_invites_to_user invites:integer
ruby script/generate migration add_invites_to_users invites:integer
And to test it further
ruby script/generate migration AddInvites
ruby script/generate migration AddInvites invites:integer
All of the above give me
builder.rb:175 in 'build': Illegal route: the :controller must be specified! (ArgumentError)
Hi
I have a small doubt in using cscope with clearcase views.
Before I used to use ctags and used to run script which creates tag files within the directories of codebase for each clearcase view as a result I can use multiple clearcase views with different codebases at once.
But in case of cscope, database is getting created in my home directory as a result I have to build cscope database everytime and not able to use parallely different clearcase views with different codebases.
Is there any solution for this problem ??
I am attempting to publish a 3.5 MVC website on my build server through cruise control.
Having looked around on the net it appears you need to wrap the ASP Net Compiler. I was hoping that this task can be called through MSBuild.
Any ideas on how this is done?
Hi,,,
I’m working on an application which has been designed using n-tire application architecture .The application was developed in the .NET platform utilizing C#,VB.NEt, Framework 3.5, Dataset, WCF, asp.net update panel, JavaScript ,Josn, 3rd Party tools.
my current proposed layout is such
presentation layer - Business Logic - WCF - DAL-Data access
The point Is:
Is the above layout the right way to build SOA systems ?
As always, your advice is greatly appreciated
PhoneGap and Titanium allow you build native iPhone Apps based on HTML and JavaScript.
Has anyone gained experience with both? What are the differences?
Who is responsible for calling CoInitialize and CoUninitialize if
1- I host a COM dll within a surrogate process (either by using dcomcnfg utility or COM+ wizard)?
2- I build a ISAPI DLL that contains COM objects?