"using" is a keyword in some programming languages (C++, C#)
-6
votes
0answers
31 views
Calculator code for android [closed]
I need to make a calculator based app on android (complex calculation but calculator concept will suffice). I know basic java, from where should I start? I have installed the ADT bundle for eclipse, ...
-1
votes
0answers
31 views
Updating table contents using AngularJS dynamically
This is the demo example code for adding data and deleting data using angularJS. I want to add one more button (Edit button)for updating items in the table for Updating Items in Shopping.html. On ...
-1
votes
0answers
9 views
how to use embed code in fpdf
here is my code
$codeembed = (views_embed_view('only_chart', $page = 'default');
$pdf->Cell(275,20,$codeembed,1,0,'L',0);
i using normal php string others strings showing ...
-4
votes
1answer
28 views
Generate in php use in javascript in another file [closed]
The content in this array is ramdomly generated every time a link is clicked:
Content in array position [0] is: [b0.gif]
Content in array position [1] is: [b2.gif]
Content in array position [2] is: ...
0
votes
0answers
65 views
Android XMPP:Connection Timed Out Error during file transfer from one app to other
i can send file from samsung android device to karbon android device successfully but not from karbon to samsung.got error connection Timed out.
My send file code:
public void sndFile(final String ...
0
votes
0answers
11 views
How to scroll a n-level Menuitems in a div using jquery 1.3.1
I have Menu which is being displayed as a bullet list, <ul>. This is a n-level menu. The menu is very long so I want an up and down arrow on clicking which user can move up and down.
0
votes
2answers
34 views
Is it possible to detect the variable of a using from another function and access that variable?
I have a function which calls another function. I want to know if within that second function I can detect if it is being invoked from the first function within a using-scope. If I can detect it, I ...
4
votes
2answers
181 views
C++11 Base constructor delegating/forwarding to derived class with “using” keyword
struct B {
B () {}
B(int i) {}
};
struct D : B {
using B::B; // <--- new C++11 feature
};
D d1; // ok
D d2(3); // ok
Now, if I add a new constructor inside the body of struct D, such ...
-4
votes
1answer
20 views
How to create a json payload using file data [closed]
I have a file(.CSV) which has 20 columns data. I would like to read a file record by record and create a JSON payload using Unix Shell script
Please provide an example
Thanks,
Balu
1
vote
3answers
63 views
C# using <myowndll>, doesn't work (VS10 Express)
Background: I am a novice in C#, and use Visual Studios 2010 Express.
I have a class (let's call it myclass) which I want to use in multiple projects. I used to add classes with Project->Add Existing ...
0
votes
0answers
23 views
FileStream not closing with using statement
Having a problem with a file stream not being closed via a using statement. I have tried both
using (var reportStream = new StreamWriter(new FileStream(Path.Combine(dirPath, "FileList.txt"), ...
0
votes
2answers
56 views
derived basic_ostream: “using” keyword and ambiguous overload for operator <<
I have a derived basic_ostream class and an inline modifier (similar to setw). My stream class should also inherit all the operator << behavior from its parent. I get different compiler errors ...
0
votes
3answers
63 views
How to check programatically if an assembly reference exists in c#?
I am trying to write a small c#/.net library for very specific financial calculations.
I have written several classes that depend only on the standard assemblies of the .net framework. That is, the ...
0
votes
2answers
43 views
Missing references that don't exist in MVC3
I separated out my models from my main ASP.net MVC3 app into a class library which is apart of the same solution as my project and is referenced into my project.
How ever the models in this class ...
0
votes
4answers
67 views
using and try finally, what should I choose
I have the following code block;
using (var msResp = new MemoryStream(Resp))
{
try
{
Response resp = new Response(msResp);
SetClientIdentityResponseValue sirv = new ...
-1
votes
1answer
29 views
Using URL With Variables to Effect Code
I was wondering how you use ? (question marks) in your website to make it do different stuff based on the variable in the url.
like:
http://example.com/php/learn/kinder.php?level=$level
like what's ...
-1
votes
0answers
16 views
How to add row number and tab numbers into cell in table view
My question is..>
I have a tab bar application with 3 tabs.
Each tab should have a TableView.
Every 3 seconds, one row should be added with a text specifying "Row number and tab number" to one of the ...
1
vote
2answers
77 views
Oracle USING clause best practice
Disclaimer: I'm a developer and not a DBA.
I've been a huge fan of the USING clause in Oracle since I accidentally stumbled upon it and have used it in place of the old-fashioned ON clause to join ...
6
votes
3answers
184 views
using directive vs using declaration swap in C++
Please refer to the code below:
#include <algorithm>
namespace N
{
template <typename T>
class C
{
public:
void SwapWith(C & c)
{
using ...
1
vote
0answers
22 views
implementing localization from database instead of properties file in springs
I am new to spring-mvc.
localization is working fine using properties file.But
I have translations in the database(Key,Value_en,value_native)how to implement localizations from database.I saw the ...
3
votes
2answers
71 views
Should I use several nested “using” stements?
I'm wondering whether I should use using statement inside another?
For example:
using(SqlConnection con = new SqlConnection(...))
{
...
using(SqlCommand cmd = new SqlCommand(...))
{
...
0
votes
0answers
41 views
how to choose columns by name in gnuplot
I have source data with 5 columns and my current method to print it is following
plot "data.txt" index "here" using 2:xticlabels(1) axes x1y1,\
"" index "here" using 4:xticlabels(1) ,\
"" index ...
2
votes
1answer
78 views
Dispose with using C# - full implementation
how can you implement the Dispose method after using "using" on a MemoryStream object in a class that implements IDisposable?
public class ControlToByte :IDisposable
{
public static byte[] ...
0
votes
2answers
37 views
PostgreSQL: how to delete rows using a join
I've got a problem to delete records from a PostgreSQL table, using a LEFT JOIN.
I'd like to delete rows I get with the following query:
SELECT * FROM url
LEFT JOIN link_type ON url.link_type = ...
-6
votes
2answers
119 views
Close browser from java code using specific url address
1) I want to close specific browser tab using url address from my java code. As it is a client server applicaiton. I want to close browser tab using url address from my client application
The server ...
3
votes
2answers
156 views
C++ `using` command for type alias in template class
This seems like it should be really simple, but I've been playing and havn't found the solution I'm looking for yet, so here goes:
I have the following struct (simplified for illustrative purposes of ...
0
votes
0answers
14 views
how can i fill in turtle directions in a list using python?
I have a list of turtle directions
redlist =
['seth(0)', 'forward(drawdist)', 'seth(0)', 'forward(drawdist)', 'seth(90)', 'forward(drawdist)', 'seth(90)', 'forward(drawdist)', 'seth(180)', ...
0
votes
1answer
20 views
gnuplot plot a column versus integers numbers
I know that to plot two columns one versus the other I have to use:
plot "datafile.dat" using 1:2
but what if I have just one column in my datafile and I want to plot it by associating each value to ...
0
votes
2answers
79 views
Select @@Identity inside 'Using' statement
I am coding a Sql-Server-ce application in C#.
Recently I have been converting my code to use using statements, as they are much cleaner. In my code I have a GetLastInsertedID function which is very ...
0
votes
0answers
25 views
Generalizing the SqlDataReader pattern
I have a lot of code of the form:
Using cn As New SqlConnection(MyConnectionString)
cn.Open()
Using cmd As New SqlCommand(MySqlText, cn)
Using dr As SqlDataReader = ...
0
votes
0answers
22 views
string vew = view.Rows.ToString(); view.Rows[vew].Cells[0].Text = dr[“emp_name”].ToString();
here is my code kindly review this code and correct the error if any.
i dont know what is the mistake with this code
want to fetch data/select data from db using data grid view
using System;
...
12
votes
3answers
282 views
Do HttpClient and HttpClientHandler have to be disposed?
System.Net.Http.HttpClient and System.Net.Http.HttpClientHandler in .NET Framework 4.5 implement IDisposable (via System.Net.Http.HttpMessageInvoker).
The using statement documentation says:
As a ...
0
votes
3answers
60 views
Error while implementing using in powershell
Following this post when I am trying to implement Using functionality in Powershell
Function cUsing {
param (
[System.IDisposable] $inputObject = $(throw "The parameter -inputObject is ...
0
votes
0answers
35 views
Tabhost with Activity this application has developed in 2.2
We had developed app in 2.2 in this we used TabActivity in newer version it has deprecated, and we want to use Tabhost with Activity class in this connection i used
main.xml file
<TabHost
...
0
votes
5answers
72 views
C# Using SQL Method needs a close-method? [duplicate]
When using a using block for SQL connections in C#, does this also a close method? I'm asking as I need to explicitly use the con.Open() method. I found this example:
using (SqlConnection con = new ...
0
votes
1answer
50 views
'Using' resource variable must have an explicit initialization vb.net
i am trying to use a basic command on a database table, following the instruction i found here. This is my first time doing sql stuff, and i am having some issues getting the first line of my 'using' ...
0
votes
0answers
27 views
chart using macro in excel
DATE CPU MEMORY IO
Mar 13 2013 4:30:01:013P 0 5 144
Mar 13 2013 5:31:01:013P 15 456 353032
Mar 13 2013 6:32:01:013P 45 4555 353032
Mar 13 2013 7:33:01:013P ...
0
votes
0answers
19 views
how to to maintain Fontsize in Cookies using javascript?
I want to change font size according to the user requirement in my portal (i.e. i want to add 3 button A-,A & A+ .onclick of that button font will change& maintain in entire portal site )
i ...
0
votes
0answers
46 views
Difficulty with xml parsing in websphere
I am using WID 7.0. I have a Business Object(BO) which contains complextype array. I am trying to get this array into my java code. I am getting this array using NodeList. But in my java code when i ...
0
votes
0answers
79 views
asp.net database connection through creating a new class
I have started my project in asp.net 2008 and sql as datbase. BUt there is some issue in connection with the database.
For this purpose, I have to create a class and then to connect to the database. ...
-2
votes
2answers
29 views
Why is my query not working while I tested in query helper [closed]
protected void ASPxButton1_Click(object sender, EventArgs e)
{
try {
string turusec = ASPxComboBox1.SelectedItem.ToString();
switch (turusec)
{
case "Laptop":
...
0
votes
0answers
19 views
Is it possible “Using with alias at runtime”?
namespace
{
using Itest = IMyInterface
}
Then I use the Itest for rest of code But as per new requirement,
based on some conditions i need to set the alias at runtime. >Like
using ...
1
vote
2answers
211 views
Android using front camera - compatibility for all devices
I have used this script to open front face camera:
private Camera openFrontFacingCameraGingerbread() {
int cameraCount = 0;
Camera cam = null;
Camera.CameraInfo cameraInfo = new Camera.CameraInfo();
...
1
vote
0answers
48 views
Creating a list and action of list items using Swing
Below is my code which creates a list in Swing. As I click on the list it changes its color, but I need text to be displayed instead of color change in background; or when I click on list item, it ...
4
votes
3answers
82 views
I am wondering about the state of connection and impact on code performance by 'yield' while iterating over data reader object
Here is my sample code that I am using to fetch data from database:
on DAO layer:
public IEnumerable<IDataRecord> GetDATA(ICommonSearchCriteriaDto commonSearchCriteriaDto)
{
...
4
votes
1answer
88 views
Missing Using directive for hierarchical_grouping in MSDN crystal reports tutorial
I was working through the MSDN tutorial for Crystal Reports, and I get to the Binding the Embedded Report to the CrystalReportViewer Control step:
When I try the build, it tells me that I am missing ...
2
votes
1answer
71 views
Impossible to avoid 'using filesort' in a very simple query with order
I'm trying to create a select query but mysql always use "using filesort" in extra when I use explain query.
I try with the most simple query, but the problem doesn't disappear.
The structure of my ...
3
votes
1answer
94 views
How narrow should a using declaration be?
I have this little class widget that uses a std::string. It uses it in many places, often in conjunction to a std::vector. So you can see, that the typenames become very long and annoying.
I want to ...
2
votes
2answers
89 views
Can “using <namespace>;” directives be made more efficient in .NET?
When I create a new class file in C#, the usual structure is as follows:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UnitTest
{
class Class1
...
0
votes
0answers
56 views
Getting Error while developing Facebook application using java
I am trying to implement a simple facebook application using facebook-java-api.
And codes are:-
web.xml
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
...



