Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
13
Posts with Upvotes
13
Upvoting Members
11
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
~19.8K People Reached
Favorite Tags
Member Avatar for santu_1

Hi I am adding comboboxes dynamically in a panel in windows form application. At run time, when I select any one of the comboboxes, all the comboboxes changes. i.e they dont retain individual selected item values. here is my code. for(int i=0;i<20;i++) { Label l = new Label(); l.Text = …

Member Avatar for ss125
0
831
Member Avatar for Rajiv9

Hi, I have avalue like 2.90 i want the value to be round off to 3.00 Can u help me out Rajiv

Member Avatar for Rajiv9
0
2K
Member Avatar for nigelhow

The query is return an empty value on the frist row which means that the supposed value in the first row is in the second row , etc etc . How do i correct this? $query1 = "SELECT * FROM opentrades"; //You don't need a ; like you do in …

Member Avatar for stevie.whalen
0
193
Member Avatar for Krefie

Hey boys and girls, I need help, I am working on a project that requires me to build a business tier (.dll) for a c# program, I've only ever used SQL server. The problem comes in as follows, at university I was tuaght how to import a datasource via the …

Member Avatar for C#Jaap
0
207
Member Avatar for faisal.ghulam.9

i really need a quick help with my code. when i debug the program no matter what the numbers in milage and Rate are the result is always 0 and here is my code: Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click Dim …

Member Avatar for C#Jaap
0
126
Member Avatar for Sunil_8

Hi guys, can anyone help me in excel. Is there any option for hyperlink worksheet to particular text....? Thanks

Member Avatar for Vincentas
0
76
Member Avatar for weeraa

I faced to a huge problem when i coding some stored procedure. How to combine some string to sql string in stored procedure??? This is what i did upto now. @WhereCondition = ' WHERE id = 102 ' DECLARE recoredSet CURSOR FOR SELECT SUM(Amount) as AmountSum FROM sale + @WhereCondition …

Member Avatar for C#Jaap
0
224
Member Avatar for jameslivsey

Hi, I have a form that has two controls; a textarea and an upload, one of which is hidden depending upon the selection of a dropdown. What I'm trying to do is alter the action of the form depending on which control is hidden. so if the textarea is visible …

Member Avatar for C#Jaap
0
136
Member Avatar for lloydsbackyard
Re: join

<?php $query = "SELECT studinfos.lname, studinfos.fname, studinfos.mname, studinfos.suffix, studenroinfos.yearLevel, studenroinfos.sy FROM studinfos INNER JOIN studenroinfos ON studinfos.idNumber=studenroinfos.idNumber WHERE (studinfos.idNumber='$searchString') OR (studinfos.lname='$searchString') OR (studinfos.fname='$searchString')"; $result = mysql_query($query); echo "<table border=0 style='border-collapse: collapse' width=95%>"; while ($record = mysql_fetch_array($result)){ $name= $record['lname'].', '.$record['fname'].' '.$record['mname'].' '.$record['suffix']; /* when sql is modified already i can insert …

Member Avatar for lloydsbackyard
0
137
Member Avatar for thijscream

what am i doing wrong here? <?php include 'connect.php'; $query = 'SELECT productionorder.Finished FROM productionorder WHERE productionorder.ProductionOrderId = '.$id; $result = mysql_query($query) or die ('Error : ' . mysql_error()); while($data = mysql_fetch_array($result)){ $status = $data['Finished']; } if($status == 1){ header('location: index.php?user='.$user.''); } else{} ?> the query returns 1 and is …

Member Avatar for chemwile
0
197
Member Avatar for sushilsth

Sub loadtodgv() Dim sqlquery As String = "select * from nursery" Dim sqlcommand As New OleDbCommand Dim sqladapter As New OleDbDataAdapter Dim table As New DataTable With sqlcommand .CommandText = sqlquery .Connection = conn .ExecuteNonQuery() End With With sqladapter .SelectCommand = sqlcommand .Fill(table) End With DataGridView1.Rows.Clear() For i = 0 …

Member Avatar for sushilsth
0
203
Member Avatar for mesbahuk

I have a Java code block like following: Vector<NameAddress> route = dialog.getRoute(); for ( Enumeration<NameAddress> e = route.elements(); e.hasMoreElements(); ) { // some more to copy route to another Vector<> } I am trying to convert it in C# and here is my code: List<NameAddress> route = dialog.getRoute(); for ( …

Member Avatar for C#Jaap
0
298
Member Avatar for fhau013

what ide can i use for c# programming? except for visual studio? thank you :)

Member Avatar for fhau013
0
234
Member Avatar for sonicx2218

So I know I'm going to get grilled, but I'm an average-adequate javascript/html/css coder. I know my way around, but there's a lot of advanced features I do not know of. A friend wanted me to build a site for him, told me about what he wanted, then I looked …

Member Avatar for EvolutionFallen
0
152
Member Avatar for omoayan

I have a site where I upload data into mysql database. When I upload my text, it is just the way it was uploaded in mysql, but when I call for the text upload, in my php page, there are no paragraphs. Everything is just muddled up. what could be …

Member Avatar for C#Jaap
0
163
Member Avatar for C#Jaap

I am working on an application that keeps track and uses files stored on the file system. Users are allowed to open, create, delete and move files in the file system. Meanwhile my application is not constantly running so I can't keep track of all changes real-time. Afterwards my application …

0
137
Member Avatar for weirdCreature7

Pls. help me with this code :) the alert box is not appearing and it goes directly to homebody_admin.php I want the homebody_admin.php to appear after I click the ok button on alert box pls help. Your help is highly appreaciated! thanks in advance :) if($password!= mysql_result($result, 0)) { echo …

Member Avatar for weirdCreature7
0
176
Member Avatar for neartoyou

When the PHP file got a data that has '> <' or 'http://' **with GET Methode**, it's going to Forbidden Page. example: * mysite.com/folder/chat.php?text='> <' or * mysite.com/folder/chat.php?text='http://www.site.com' This is the result : [ **Forbidden** You don't have permission to access /folder/chat.php on this server. Additionally, a 404 Not Found …

Member Avatar for almostbob
0
228
Member Avatar for PHPuss

I have calendar in php and two veriable : date3 , data4 When i run a statement <input type="button" name="button2" id="button2" value="Date" onClick="javascript:alert('from date : '+this.form.date3.value+' ,to date: :'+this.form.date4.value);"> I have in response two dates I need to use this dates in query to oracle to filtr result from db. …

Member Avatar for C#Jaap
0
132
Member Avatar for vikas_3r

I not going to print any document.I want to retrieve details of usb-printer.How can i get connected with usb- printer with c# programming to retrieve details?

Member Avatar for C#Jaap
0
443
Member Avatar for amitash

Hi, I want to change the numeric value in a cell to a string with 1000 Separator(,), e.g. numeric 1000 will to string "1,000" and 123456789 will change to string "123,456,789". How to do that in VBA? Thanks

Member Avatar for QVeen72
0
412
Member Avatar for shanki himanshu

int a=-3,b=2,c=0,d; d=++a&&++b||++c; printf("a=%d,b=%d,c=%d,d=%d",a,b,c,d); why value of 'c' is not incremented in output?

Member Avatar for Banfa
0
103
Member Avatar for connieelamx

hello, i have a compaq laptop it was working fine the other day, i just tried to go on it today and the screen is really black i can just about see what the screen says but it is working fine, i have tried going onto the brightness and that …

Member Avatar for fahimk123
0
286
Member Avatar for sirus23

OK it deserts this to put it in a new thread. I've found this: using System; using System.Net; using System.Web; using System.Collections; using System.IO; namespace WebRequestExample { class WebPostRequest { WebRequest theRequest; HttpWebResponse theResponse; ArrayList theQueryData; public WebPostRequest(string url) { theRequest = WebRequest.Create(url); theRequest.Method = "POST"; theQueryData = new ArrayList(); …

Member Avatar for C#Jaap
0
1K
Member Avatar for Jazerix

Hey So i'm trying to create a pretty simple login for now... When i click the Log On button i need it to ingnore the wheather the letters are uppercase or lowercase, in textbox1, how can i do that? :D Kind Regards -Jazerix

Member Avatar for aloksupremacy
0
111
Member Avatar for judithSampathwa

hi i am creating a login page in C#.net windows application and i have a remember me checkbox in the login interface. can some one give me a tutorial to code the remember me check box in the C# windows application thank you

Member Avatar for C#Jaap
0
2K
Member Avatar for jacksantho

Hi, Please help me out. 1. Getting HYPERLINK value from page1 and saving in page2 using GET method.($re=$_GET[variable];) 2. Passing this value in -> select query 3. Displaying my output - correctly(in each and every value, there is an SUBMIT button.) 4. My Form Action is page2 itself. 5. Due …

Member Avatar for C#Jaap
0
269
Member Avatar for srikanth2321

HI, I have a software which gives me a text file which consist of German characters and are stores in the notepad with space. When I open it with note-tab software initially the german character is stored as space but they have a option " convert to ASCII text" then …

Member Avatar for srikanth2321
0
200
Member Avatar for catcit

I have a table that contains approximately 22000 rows and I used a Boolean Full-Text Search in order to find what I`m interested in. My problem is that I created a 'dynamic search feeling' that consists of a DataGridView that it is refreshed after every TextChanged event. As you might …

Member Avatar for C#Jaap
0
186
Member Avatar for arjunpk

hi the code which i use to export a data table to excel works fine..... but when i open the excel file it gives me the following warning THE FILE YOU ARE TRYING TO OPEN IS IN A DIFFERENT FORMAT THAN SPECIFIED BY THE EXTENSION. VERIFY THAT THE FILE IS …

Member Avatar for C#Jaap
0
295