Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~20.4K People Reached
Favorite Forums
Member Avatar for slavedogg

This code will call a phone number and try to play a wav file. It sounds like a man on a CB that you cant understand. It should be a woman voice. I dont know if its the flo control or something else. Does anyone have any ideas?

Member Avatar for Reverend Jim
0
4K
Member Avatar for silent.saqi

please help i am confused plz plz plz [CODE] using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Data.SqlClient; public partial class handler : System.Web.UI.Page { protected void Page_Load(object sender, System.EventArgs e) { if …

Member Avatar for myaccount
0
8K
Member Avatar for codechrysalis

[B][I]Statement:[/I][/B] write a program that creates a two dimensional array with 10 rows and 2 columns, The first column should be filled with 10 random numbers between 0 and 100. * The second column should contain the squared value of the element found in column 1. Using the Show( ) …

Member Avatar for Michael27
-1
301
Member Avatar for VIeditorlover

Hi, I have these two - almost identical http posts, one works, other doesn't. POST /debug/kktest.ashx HTTP/1.1 Content-Type: multipart/form-data; boundary=---------------------------8cf186fa8ac7b31 Host: 172.16.0.9:7777 Content-Length: 68004 Expect: 100-continue Connection: Keep-Alive -----------------------------8cf186fa8ac7b31 Content-Disposition: form-data; name="identu" 2 -----------------------------8cf186fa8ac7b31 Content-Disposition: form-data; name="bookingno" aaaaa -----------------------------8cf186fa8ac7b31 Content-Disposition: form-data; name="tag" -----------------------------8cf186fa8ac7b31 Content-Disposition: form-data; name="file"; filename="aaa" Content-Type: x-application/pdf binary …

Member Avatar for dwarvenassassin
0
159
Member Avatar for dwarvenassassin

... to provide Email client reading pane functionality such that it can display an attached image as part of the message body. Is there a single control that will display text with an imbedded image or do I need to create a UserControl?

Member Avatar for mariasemuel
0
109
Member Avatar for suomynona

I made a Client and Server program based on the code found in [URL="http://www.daniweb.com/software-development/csharp/threads/228973"]this thread[/URL]. Here's the code of my program Client (Sender of file) [CODE] //Before calling this function, //I send the file size to the server first private void fileToServer(string filename) { try { FileStream fs = new …

Member Avatar for suomynona
0
408
Member Avatar for gameover9

I am trying to write a program to browse to a WSP file and then run the STSADM to make it easier to add solutions to our sharepoint site. The STSADMN is located in c:\program files\common files\microsoft shared\web server extensions\14\bin\stsadmn.exe. [CODE]stsadm -o addsolution -filename "filename that was selected"[/CODE] This currently …

Member Avatar for gameover9
0
174
Member Avatar for izeko
Re: GUID

Can any one tell me why i would need i GUID in my project. I see it is in the properties of my project under Application/Assembly information. Do i need to make sure this is unique for every project i create. I usually use one project as my starting point …

Member Avatar for dwarvenassassin
0
75
Member Avatar for dburris

Hello, I am attempting to call a method from a click event on a form and not having much luck. public void xbuttonValidateUPC_Click(object sender, EventArgs e) {//Validate UPC Button Click UPC_JDB UPC1 = new UPC_JDB("123"); string temp = (xtextBoxValidate.Text); UPC1.ValidateUPC(temp); xtextBoxValidateAnswer.Text = temp; }//end Validate UPC Button Click Program is …

Member Avatar for dwarvenassassin
0
162
Member Avatar for bmichael89

I have been working on this all day can someone please tell me what I am doing wrong. using System; public class ArrayManagement { public static void Main(string[] args) { int[] myArray; myArray = new int[7]; myArray = fillArray(); int sum, avg; arrayMath(myArray, out sum, out avg); displayArray(myArray); } public …

Member Avatar for thines01
0
129
Member Avatar for cchacholiades

String sQueryShow = "SELECT SUM(pf5_showplaylists.runningtime) FROM pf5_showplaylists WHERE pf5_showplaylists.showID = " + ShowID + ";"; HOW CAN I GET THE RESULT OF THIS SQL STATEMENT INTO A VARIABLE SO COULD DISPLAY THE OUTPUT IN A MESSAGE BOX? (URGENT, REALLY URGENT..)

Member Avatar for vimit
0
4K
Member Avatar for sha1023012

Hello everyone. I am kinda getting confused here. I need to have a checkbox and when the checkbox is checked i need to show two labels and controls so that the user can enter the salary and title of the employee.Then when the checkbox is unchecked, hide the two sets …

Member Avatar for dwarvenassassin
0
106
Member Avatar for ads1188

Hi all I am trying to enter data into textboxes which will then store the data entered into a database. When I debug everything starts but when I click Add, the database stays the same. I think I might be missing something in my code. Any help is appreciated. [CODE] …

Member Avatar for dwarvenassassin
0
173
Member Avatar for RomeoX

Hi everybody, Could anyone help me in the select statement. I created small form to search in the database, it gaves me an error [B]Missing Expression[/B]. The combox has the attributes of the table because I want restrict the search to only on specfic columns. [CODE]commandString = "Select * from …

Member Avatar for dwarvenassassin
0
161
Member Avatar for crazyjdog

I have this problem that I am working on for class, I don't have the method calls in the main mostly because I'm not sure how to use them. I guess my question is what am I missing and what do I need to change to get this to run …

Member Avatar for dwarvenassassin
0
203
Member Avatar for dwarvenassassin

I've got a ListView which is normally hidden and Enabled=false; I'm using the ItemChecked event Enable/Disable a button on the form (the button is disabled if nothing is checked) If I add the ItemChecked event handler via the Designer in the usual way, it puts the code in the usual …

Member Avatar for Mitja Bonca
0
133
Member Avatar for dwarvenassassin

Again, for anyone working with ID3 version 1 or 1.1 tags. This class is used to store the tags associated with a given file. There is a default constructor in case you need to instantiate an 'empty' instance, but in 99% of cases you pass the filename of the audio …

0
189
Member Avatar for dwarvenassassin

For anyone working with ID3 version 1 or 1.1 tags in audio files, this static class may come in handy. It uses indexers to convert between the textual to the numerical representation or from numerical to textual and also accounts for unset and invalid values. Being static, it is always …

0
218
Member Avatar for kamilacbe

Hi... Am stuck with a problem.....my question is how do i iterate a control for eg(a textbox) in runtime....let me make it clear if user enter value as "2" and clicks a button it has to iterate two texboxes as output. I have done in my way but then it …

Member Avatar for kamilacbe
0
160
Member Avatar for RFID

Hey, So I'm working on a pretty basic program to help me get accustomed to classes, private variables and arrays. I need to hold the data for 5 individuals such as name address email etc. These are held in my PersonClass and are private strings. I access these strings using …

Member Avatar for dwarvenassassin
0
185
Member Avatar for seslie

Hello Everyone, Hi, just started learning c# recently although i've known the basics for a while now. I am required to start creating plugins for a particular program. Please, i need help, materials sources, exercises and projects that would help me get familiar with developing plugins as soon as possible. …

Member Avatar for seslie
0
91
Member Avatar for itsvineethpv

How to add a folder to client computer when installing my windows application. Dear Friends, I have created a windows application using ASP.net and C# . I want to add some documents to client computer when it is installing. I want to get the installation path too. Because some forms …

Member Avatar for skatamatic
0
197
Member Avatar for dwarvenassassin

OK, I am relatively new to C#, so in order to give myself a 'learning' project, I thought I'd update an application I wrote a couple of years ago. The application uses a ListView control in "Details" mode to display MP3 tag data stored in an Access MDB database file. …

Member Avatar for Momerath
0
188
Member Avatar for zachattack05

Is it possible to transform a label's ellipsis text based on the text displayed on the screen? For example, if the labels text is constructed from multiple strings and only 2 of the 5 are displayed, can the ellipsis text display "...and 3 others" or something like that? I have …

Member Avatar for zachattack05
0
108
Member Avatar for andur92

Hi, I am new to programming and have just started learning C and C#. I am trying to print the following pattern using for loop in C# 1 23 456 78910 and so on... I have tried everything but its not giving the desired output. Can anyone help me with …

Member Avatar for dwarvenassassin
0
602