Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
69% Quality Score
Upvotes Received
8
Posts with Upvotes
5
Upvoting Members
6
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
1 Endorsement
Ranked #858
Ranked #1K
~38.3K People Reached
About Me

Not Possible

Interests
Coding,Computer Gaming,Brain teasers,Puzzles,Chess,Football
Favorite Tags

49 Posted Topics

Member Avatar for fugio

I think Perplexed is saying right this problem seems due to closing the connection but if you provide few more details then it would be easier to find its root...

Member Avatar for Amudhambika
0
4K
Member Avatar for Ketsuekiame
Member Avatar for overwraith
15
1K
Member Avatar for reminem

Richtextbox can be used for exporting styles like font,Color,Background colr etc.Check the below example for richTextbox. using System; using System.Drawing; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { richTextBox1.Font = new Font("Consolas", 18f, FontStyle.Bold); …

Member Avatar for reminem
0
238
Member Avatar for Ibadullah_1
Member Avatar for Daemon_CC
0
103
Member Avatar for Chem_1

You can try Putty tool for accessing your Linux Environment.This is a freeware easily available through internet.

Member Avatar for rubberman
0
333
Member Avatar for shashidhargm
Re: RSS

RSS is basically Really Simple Syndication (RSS) that is an XML-based document format for the syndication of web content so that it can be republished on other sites or downloaded periodically and presented to users. The RSS 2.0 specification describes how to create RSS documents. An RSS document, also called …

Member Avatar for Daemon_CC
0
2K
Member Avatar for ParPau

you can use like this: //open document com.aspose.pdf.Document pdfDocument = new com.aspose.pdf.Document("input.pdf"); // loop through all the pages of PDF file for (int pageCount = 1; pageCount <= pdfDocument.getPages().size(); pageCount++) { // create stream object to save the output image java.io.OutputStream imageStream = new java.io.FileOutputStream("Converted_Image" + pageCount + ".jpg"); //create …

Member Avatar for Taywin
0
2K
Member Avatar for MrJo
Member Avatar for Daemon_CC

I am using My SQL Database. I have two databases of My SQL which are used in a appplication simultaneaously as backend and log databases. So i need to stop services of log database only to view some results relating to my application. Is there any way to stop the …

Member Avatar for kgariando
0
210
Member Avatar for Satyam_1

Try below code to insert your records... Dim sql As String = "INSERT INTO [Accessonbook-1] (ID,Name,Age,Sex) VALUES (@q1, @q2, @q3, @q4)" Using cn As New SqlConnection("Your connection string here"), _ cmd As New SqlCommand(sql, cn) cmd.Parameters.Add("@q1", SqlDbType.VarChar, 50).Value = IDtxt.Text cmd.Parameters.Add("@q2", SqlDbType.VarChar, 50).Value = Nametxt.Text cmd.Parameters.Add("@q3", SqlDbType.VarChar, 50).Value = Agetxt.Text …

Member Avatar for jared.geli
0
489
Member Avatar for Varunkrishna

You could use a conditional that tested for empty nodes foreach (XmlNode node in nodes) { // Conditional goes here direction=node.ChildNodes[0].ChildNodes[0].Value.ToString(); comment=node.ChildNodes[1].ChildNodes[0].Value.ToString(); image_id= node.Attributes[0].Value.ToString(); }

Member Avatar for cgeier
0
1K
Member Avatar for xuexue

you can try <SelectParameters> <asp:ControlParameter ControlID="Label1" Name="RECID" PropertyName="integer" Type="Int32" /> </SelectParameters> this may be due to you are passing integer and you have mentioned its property value as Text.

Member Avatar for Daemon_CC
0
1K
Member Avatar for nadiam

you can try like this... $(function() { var currentPath = window.location.pathname; $("a").each(function() { var src = $(this).attr("href"); if (src.indexOf(currentPath) != -1) { $(this).css("font-weight", "bold"); } }); });

Member Avatar for nadiam
0
355
Member Avatar for widygui

you can try following syntax for inserting data values `dataGridView1.Rows[rowIndex].Cells[columnIndex].Value = value;`

Member Avatar for Daemon_CC
0
201
Member Avatar for MRAR

I had also faced same situation once,may be following post can help you [Here](http://social.msdn.microsoft.com/Forums/en-US/51b69999-d8f7-4d4c-8be0-2bdcce24e914/set-priority-for-prerequisites-in-setup-project-c?forum=winformssetup)

Member Avatar for Daemon_CC
0
243
Member Avatar for nadiam

query should be like.. INSERT INTO def (catid, title, page, publish) SELECT catid, title, 'page','yes' from `abc`

Member Avatar for guruparthi
0
2K
Member Avatar for airhalynn101

You can try this as a possible solution. Dim nwData as CustomersDataSet = CustomersDataSet.GetCustomers() m_CustomersGrid.DataSource = m_CustomersBindingSource m_CustomersBindingSource.DataSource = nwData.Customers Then you can sort using the BindingSource. CustomersBindingSource.Sort = "ContactName ASC" And you can find using the BindingSource. Dim index as integer = _ CustomersBindingSource.Find("CompanyName", CompanyNameTextBox.Text) If index <-1 then …

Member Avatar for airhalynn101
0
611
Member Avatar for Moiz_1

Error (80004005) as meaning the script could not access your data. The most likely reason is a permissions related problem. Your best chance of resolving this problem is to study carefully any associated message, for example, 'File already in use', or 'Logon Failed'. Causes may be most likely : 1.Insufficient …

Member Avatar for Daemon_CC
0
511
Member Avatar for anestistsoukalis

I think you should use following script like: #!/bin/bash XLIB_SKIP_ARGB_VISUALS=1 /opt/softwaresname/abaqus cae You can also create the launcher using the following command: `bash -c 'XLIB_SKIP_ARGB_VISUALS=1 /opt/softwaresname/abaqus cae'` Setting environment variables before the executable file name in a command line is a feature of CLI (Command Line Interface) shells. If you …

Member Avatar for Gribouillis
0
2K
Member Avatar for svsathyavishnu
Member Avatar for Knight_YUVA

you can set validation in GUI mode like if you want only numbers to be entered then you can enter numbers which will be only accepted that text box in text box's properties. or you can do it with the code like: Func() { e.handled=(!char.IsDigit(e.KeyChar)) && (!char.IsControl(e.KeyChar)); if(e.handled==0) { Enter: …

Member Avatar for ChrisHunter
0
166
Member Avatar for Richa_2

There are two ways to create a String object 1) String str="hello" 2) String str=new String("hello") 3) new String(str) and for second one look at below code public class Concat { String cat(String a, String b) { a += b; return a; } } If a is null, then the …

Member Avatar for Richa_2
0
285
Member Avatar for laura301019
Member Avatar for Daemon_CC
0
180
Member Avatar for Tinnin
Member Avatar for Ali_khan11
Member Avatar for mandar_palse

it may typically relate back to an issue during the installation or an upgrade. or Check the schema the stored procedure belongs to on your host - it could be that it's not in the "dbo" schema.

Member Avatar for Daemon_CC
0
2K
Member Avatar for jed247
Member Avatar for jafar muzeyin

ASP.Net will work very well with MS Sql Server.There are definitely some benefits to using SQL with ASP.NET, since the two are architecturally synchronized. However, plenty of high-performing applications use Oracle.

Member Avatar for geniusvishal
0
346
Member Avatar for Sulaiman_1

Ozeki Phone System also supports ASP.NET and C# and it provides more APIs for creating unique telecommunication solutions as well. [Here](http://www.ozekiphone.com/voip-part1-c-example-on-sending-sms-making-voip-calls-740.html) Surely you will get help with this.

Member Avatar for geniusvishal
0
210
Member Avatar for nikiki

you can Use the substring and indexof functions. like `item = item.Substring(1, item.Length 4)` or you can try ' try this <% dim myString myString = "hello.txt" %> <tr><%=Right(myString, 4)%></tr> <% ' continue do whatever %>

Member Avatar for Momerath
0
189
Member Avatar for Nebil

try this : "SELECT * FROM [per_diem_accomodation] WHERE [project number]='" + projcode + "' AND [employee number]='" + empcode + "' AND [current month]='" + resultdate + "'"

Member Avatar for Nebil
0
205
Member Avatar for reygcalantaol

try this // Static method: if (Regex.IsMatch(txtName.Text, @"<!--myproductsku-->")) { string result = reg.Replace("<!--myproductsku-->" ,"This is my myproductsku."); Console.WriteLine("Replacement String: {0}", result); }

Member Avatar for Daemon_CC
0
268
Member Avatar for hitro456
Member Avatar for Daemon_CC
0
2K
Member Avatar for PsychicTide

try //adding data to session //assuming the method below will return list of Products var products=Db.GetProducts(); //Store the products to a session Session["products"]=products; //To get what you have stored to a session var products=Session["products"] as List<Product>; //to clear the session value Session["products"]=null;

Member Avatar for Daemon_CC
0
326
Member Avatar for fugio

When you add the row, you should be able to just access the cell which is the ComboBoxCell and set the value property. Here's a quick example which assumes that column 0 is the combo box: 'First, get the cell as a useful object 'You'll need to know the index …

Member Avatar for Daemon_CC
0
4K
Member Avatar for arifkhumaidi

Saliency detection is considered to be a key attentional mechanism that facilitates learning and survival by enabling organisms to focus their limited perceptual and cognitive resources on the most pertinent subset of the available sensory data. Examples: Suppose you are driving and suddenly a truck appears. You react immediatelly because …

Member Avatar for Daemon_CC
0
173
Member Avatar for LALITHA_1

First try to load image date in to a byte array like this: BufferedInputStream bis = new BufferedInputStream(is); ByteArrayBuffer baf = new ByteArrayBuffer(bis.count); int current = 0; while ((current = bis.read()) != -1) { baf.append((byte)current); } byte[] imageData = baf.toByteArray(); then use decodeByteArray of BitmapFactory using "imageData" BitmapFactory.decodeByteArray(imageData, 0, imageData.length)

Member Avatar for Daemon_CC
0
431
Member Avatar for Daemon_CC
Member Avatar for wayne.nishant

try this... #include <stdio.h> void main() { char string[20]; int n, count = 0; printf("Enter the no of characters present in an array \n "); scanf("%d", &n); printf(" Enter the string of %d characters \n" , n); scanf("%s", string); while (count < n) { printf(" %c = %d\n", string[count], string[count] …

Member Avatar for Daemon_CC
0
2K
Member Avatar for Daemon_CC
Member Avatar for Daemon_CC
0
97
Member Avatar for BogdanCov
Member Avatar for ddanbe
0
220
Member Avatar for Pilot122x

Try logic of below given code ....you can remove particular line in notepad with the help of Streeam Reader and Stream Writer... var tempFile = Path.GetTempFileName(); var linesToKeep = File.ReadLines(fileName).Where(l => l != "removeme"); File.WriteAllLines(tempFile, linesToKeep); File.Delete(fileName); File.Move(tempFile, fileName);

Member Avatar for Bandarigoda123
0
560
Member Avatar for AmrMohammed

you can simply create a text file on clients machine and rename it with text.udl and then open it with Ole DB Core Services(Option will be available in open with section when you right click on file). Now a window will appear haing tabs like provider,Connection,Advanced etc. so go to …

Member Avatar for JOSheaIV
0
296
Member Avatar for nitish.mohiputlall

you can use array or queue to store the output characters and then you can display those characters. or you can directly reverse the string MyStr = inputbox("Enter the String:") nCnt = Len(MyStr) For i = 1 to nCnt RevStr = Mid(MyStr,i,1)&RevStr Next Msgbox RevStr

Member Avatar for VertexF3
0
150
Member Avatar for Ruan_1

It would be good to use like this... WebClient webClient = new WebClient(); webClient.DownloadFile(remoteFileUrl, localFileName); or you can try this... using (SqlConnection con = new SqlConnection(GenericData.DBConnection)) { con.Open(); using (SqlCommand cmd = new SqlCommand("SELECT ImageData FROM Images WHERE Id=@ID", con)) { cmd.Parameters.AddWithValue("@ID", Id); SqlDataReader r = cmd.ExecuteReader(); if (r.Read()) { …

Member Avatar for Daemon_CC
0
173
Member Avatar for itslucky

Ramy is right you can create set up of your application by adding a new project with type Setup and deployment.

Member Avatar for Daemon_CC
0
1K
Member Avatar for zahra97

Missing Comma in two lines: > c "and the new skill value is" > d "and the the new skill value is" may be syntax error is due to the missing commas in above two statements...

Member Avatar for Daemon_CC
0
352
Member Avatar for riahc3
Member Avatar for unikorndesigns

Amazon S3 acts as an image server in the cloud. And because Amazon S3 storage can be redundant across multiple data centers, it provides very high levels of durability for only a few cents per gigabyte per month. Every object in Amazon S3 is stored in a bucket. Before we …

Member Avatar for Colleen86
0
266

The End.