|
Hi
What is the equivalence of End (vb6) when we wanna to end an application using c#?
Started by odiseh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The exact equivalent to the VB End statement is Environment.Exit(0);.
|
|
Given a software, Is there always a clear line between front-end and back-end of a software?
Maybe it can be split into two more parts or split at a different border.
Started by Jinx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Unless you're talking about server....
That sets UI components, for example.The difference between the front end and back end is blurred in this case, as the same methods are called to handle "back end" and "front end" behavior.
|
|
Basicaly I have a user inputted string like:
"hi my name is bob"
what I would like to do is have my program randomly pick a new ending of the string and end it with my specified ending.
For example:
"hi my name DUR."
"hi mDUR."
etc etc
I'm kinda new to...
Started by Mumphster on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
S[:random.randrange....
S[:r] returns the first r characters of s.
The [a:b] notation is called a slice.
Something like this:
import random s = "hi my name is bob" r = random.randint(0, len(s)) print s[:r] + "DUR"
String concatentation is accomplished with + .
|
Ask your Facebook Friends
|
Hello,
My friend and I are having a disagreement over an application development issue. It's a simple production management application.
According to my friend, the front-end stores data in XML, and a Java program will read the XML document, store it ...
Started by udpsunil on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The notion of front end and back end do.
Or something like that, I don't remember the exact quote) .
|
|
Right now im in the middle of a product (WebApp) release, we are working with ASP.NET MVC. Im a BackEnd dev, but now i must implement the front end with the design, is this the way to do it? code all the basic HTML and then re-implement the final markup...
Started by Omar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I work.
I never did understand environments where there is a solid line between back-end and front end.
Together rather than doing ALL of the back end work while he's doing ALL of the front-end work.
|
|
What are some good end to end CPU profilers that exist for Java?
Quick list of things I'm looking for:
Offline profiling - No user interaction or GUI required during program execution. Dumping the profile data to a file and then requiring viewing afterwards...
Started by Tulenian on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I've been very happy with NetBeans Profiler ; I believe it also satisfies all your... .
Otherwise I've had very good experience with YourKit profiler.
Isn't it what hprof is for?.
I am not familiar with offline profiling.
Please see my similar question.
|
|
Question title is the crux of the problem. I have an Access 2007 (2003 format) front-end with a SQL Server 2008 Express back-end. The input form has a subform linked to another table. When adding a record in the main form, the PK field of the table (set...
Started by Michael Itzoe on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It may....
Check the Identity specification on the database to see what the Identity Increment is .
It could be that some INSERTs in the table are being done within a transaction and the transaction is then rolled back - this would use up IDs, leaving gaps .
|
|
I am looking for a good way to consistently test my web applications from the end users point of view. I have all kinds of ways to check to make sure my code is working behind the scenes. I can't count the number of times that I make a change to a piece...
Started by Scott and the Dev Team on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the Selenium IDE to record a walkthrough of your web application, and then you can either run... .
We use it to do automated UI testing throughout our solution, and it is cross browser and cross platform .
I thin you need to investigate Selenium.
|
|
I want to develop a web application, like an online scheduler. (Yes I know it's been done a million times.) Most of my experience is in Java, so I want to leverage that when considering technologies.
I've primarily been a systems developer with little...
Started by Jin Kim on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Are going the with a Java back-end, I would recommend Hibernate for your JPA, JSF with RichFaces (AJAX/skinning) and Facelets (view rendering/templating) for your front-end, and Seam to put it all.
|
|
Any service like HushMail or CryptoMail?
Started by Rohit on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
You can go send a few.
BunkerMail.com encrypts all attachments and a private note at the end point and decrypts the message only at the receiver's machine.
Which allows us to do end point encryption.
|