199,114 Archived Topics
Remove Filter ![]() | |
Hello, So I'm thinking of creating a few programs that don't use the provided components like the Button class. Basically I want to create components like a button, text field... etc, but with their own look and feel to them. I tried overriding methods of existing components and I tried … | |
I got this script from [URL="http://www.w3schools.com/asp/asp_send_email.asp"]one ASP tutorial (click here to see it)[/URL]: [code=asp]<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From=mymail@mydomain.com myMail.To=someone@somedomain.com myMail.TextBody="This is a message." myMail.Sendset myMail=nothing %>[/code] replaced [email]mymail@mydomain.com[/email] and [email]someone@somedomain.com[/email] with 2 mail addresses of two mail-boxes that I have on [url]www.yahoo.com[/url] and uploaded this script (as … | |
Hi every one,i'm following this tutorial and i can't seem to find the Message Maps property sheet in Visual Studio 2008. This is the link of the Tutorial [URL="http://www.functionx.com/visualc/dialog/dialog2.htm"]http://www.functionx.com/visualc/dialog/dialog2.htm[/URL] In the 27nth step says : Click the Message Maps property sheet but i don't find it in VC2008 I will … | |
Hi Guys I think the pic will explain better than me [img]http://img81.imageshack.us/img81/6374/printscreen001iy1.jpg[/img] Link To Image [CODE]http://img81.imageshack.us/img81/6374/printscreen001iy1.jpg[/CODE] As you can see Ill I'm trying to do is make forum thread maker/ poster It will be used for easy to update/create tutorials on the forums Any Ideas where do I start Coding … | |
Hello ,, i need to write to opened file in w+ mode.. now the problem is that first off all i need to check first string in each line if he the same to value i want to enter , dont enter and print error : in another words i … | |
That link doesn't work correctly (the ...'s in the url are pretty much invalid). If you could resend the link to the code, or use [url]http://tinyurl.com/[/url] to make the link smaller so that the site doesn't truncate the data, it would be greatly appreciated. Coma | |
I have been trying to get my program to ask the user if the want to run the program again before exiting. I have been using he following while loop. It isn't working, any suggestions. char again; again = 'Y'; while (again == 'Y','y') { // // program // cout … | |
Hey guys, I just want to know if there is any ways to add music to a python program (non-GUI, pure text program), and if there is, how? Thanks a lot! | |
I use a Tab Pane Script to load form fields into tab panes. It works correctly in most browsers including Firefox and Opera however the form cannot be submitted in Internet Explorer. [url]http://d9qjx79zqpo3.googlepages.com/tabs.htm[/url] [url]http://d9qjx79zqpo3.googlepages.com/tabcms.zip[/url] To test, please click on the link in the admin area, then click on the "Save" … | |
Hi, I'm trying to send a bitmap using WCF and here's the steps i followed: 1-Convert it into byte array [code] private IDataObject tempObj; private System.Drawing.Image tempImg; tempObj = Clipboard.GetDataObject(); tempImg = (System.Drawing.Bitmap)tempObj.GetData(System.Windows.Forms.DataFormats.Bitmap); tempImg.Save("hello.bmp"); VideoData = System.IO.File.ReadAllBytes("hello.bmp"); [/code] 2-Receiving the byte array from the other client side and convert it … | |
Hello guys, I have some doubts.I think one of you can solve this.I'm c++ fresher.My doubts are: 1.What's a parser in C++?:?: 2.How to create a parser cum interface window in c++.:?: Help me please.Thanks in advance.:icon_neutral: | |
Hey guys, I am trying to delete a file. I don't understand why its not working. [CODE=java]public void Refresher()throws IOException { File theFile=new File("C:\\theFile.txt"); theFile.delete(); }[/CODE] I launcher it with [ICODE]Refresher();[/ICODE] I googled around and followed a tutorial. (My code is compiles correctly) Thanks PO | |
I'm having trouble on how am going to start this idea of mine. I have an image and I want to plot points on that image. My Idea is to get the X and Y coordinates of the mouse pointer and save it into a text file so that by … | |
the thing is I am just a beginner and started learning .net. Can anyone tell me about the meaning of this statement. Here myrdr is the object of sqldatareader. Your responses are highly appreciated. And I had some pressure so got to learn things quickly. Please Reply and Thanks in … | |
I am having problems with str_replace. What I am doing for the administration pages of my CMS I have a include page for the top navigation (nav.inc.php). So I'll show you my code. [CODE] $page = $_SERVER['SCRIPT_NAME']; $prefix = '/administration/'; //get main and sub $main = '<div class="main-links"><a class="wnav" href="'.$prefix.'">Home</a><a … | |
I want to add to my button click some audio file, how can I do it ? | |
[code] <body onload='window.setInterval("timeHere()", 100)' onunload="sayTime()"> </body> </html> [/code] here is java script [code] <script> var time=1; function timeHere() { time = time + 1; finalTime = time / 10; } function sayTime() { finalTime = time / 10; //return finalTime; alert("Thank you for coming to my site! \n You have … ![]() | |
Hi :) I'm using winforms to try to make a GUI on Visual C++ 2005. Now one of the forms deals with a linked list (what's supposed to happen is that when a customer clicks the sign up button, a new customer object is appended to the end of the … | |
Hey guys, I'm in a bit of a loop here. What i'm trying to do is have a simple web page an that it will direct it's self to a FTP server on my network. Here is where the problem starts for me. I want to be able to upload … | |
Hi have a form with a Multiline Textbox and a Span I save the text and load into a <span> [CODE]lblSpan.InnerHTML = txtMLBox.Text.ToString.Replace(Environment.NewLine, "<br/>")[/CODE] The Span looks fine in IE but If I do this in Firefox the Environment.NewLine is not being converted I am using Visual Studio 2008 | |
Hi I need a solution for this problem,please help me.. It is a table with sorting elements, where n = i x j. We separate the table in i subtables with j elements each one. In order to search a key first of all we compare each one with the … | |
Hi all, I am usually a Perl programmer, I have some background in javascript and am attempting to create a Googleish selector div. [I]Please bear with me, excuse the long introduction...[/I] Here's the details: Our site filters content by location. I use zip codes to find radius's. So if a … | |
Just downloaded VC++ 8.0 Express and tried to run a simple sdk style program to see what happens. I've been using Dev C++, CodeBlocks, and MS VC++ 6. I've been advised to get up to date. Anyway, to get the program to run I had to change all the Api … | |
OK I'm a beginner at C++ so don't mock me for this question, so when I declare a pointer ptr (int *ptr; ) and then define ptr as 5 by saying *ptr=5; what adress is ptr pointing at-a temporary variable? Thank you-just curious. | |
Hi I am trying to upload an excel file to the server. But it won't work, every time I am trying to upload an xls file and press the button. it writes: No file was uploaded. as if i had no file. you are welcome to try on: http://radio.web.surftown.dk/admin/indset_program.aspx the … | |
hi everyone ;) i'm am having a problem, can you help me how to save big number into array? i have to input two big numbers (20 digits or less) and sum them. please help | |
I build Log in window where user enter his usernmae and password I still don"t want use SQL and any data keeper, it's only for two users so I check the password and username if it' ok than user must press botton OK and load next window this step I … | |
i need help with creating a letter pyramid usin c. this is what the basic pyramid should look like. the - are spaces in front of the letters. [quote] example 1 Type a single lowercase letter and press enter: 3 That is not a letter, enter a lowercase letter:= That … | |
Hey guys, I'm having another problem (two actually) with a function that reads 5 variables (type [B]int[/B]) stored in an text file, separated by lines ([B]\n[/B]) and then it returns them to use in the main() program. The thing is, I do not know how to return them to the … | |
Hey i have created binary search prograram this progaram search all locations but not first if i give value of other than zero location it gives results but not for zero location please guid me the code is as follows [code]// Program for Binary search #include<stdio.h> #include<conio.h> int a[50]; void … | |
how to delete the last record i inputted in my table using sql? im using adodb and i dont know how to delete the last record i was inputted please help me | |
![]() | hi again after watching the numb3rs season 3 finale i wanted to try and make a program to encode or decode a paragraph i have attached a .txt file with the codings how should i start? all help welcomed. thanks in advance leegeorg07 |
I still can't understand what a difference between a regular window and modul form ? what it means modal form? | |
anyone knows how to execute the function (x power n) in O(log n) and it has to be in iteration . | |
Hey Guys, I'm creating a submission form for my website. Now, how do i make it when someone hit's submit, it sends an e-mail to me??? I'm using dreamweaver. Thanks, Cohen | |
I want if user click on save all the data should store on the MR table but it is not storing. Private Sub Command1_Click() ' Debug.Assert False On Error GoTo cancel Set rs1 = New Recordset rs1.Open " SELECT * FROM MR ", con, adOpenDynamic, adLockOptimistic ' rs1.Open " SELECT … | |
Hi, and happy hollidays to everyone, I start working with WinForms about a week and wonder how could I add a picture like a background to m Form. What kind of files C# can get(*.jpg,*.gif) thanks a lot Sergey | |
Hi. I want ot use the TinyMCE editor in my jsf code, but unfortunately there is error in using the init function, and also in eclipse when I copy the folder of the tinyMCE, there is warning sign on the folder. can any one help me through this issue ??? … | |
Hi,I'm new in WinForms Application help me change my ComboBox to default state of one of Collections I have Thanks Sergey | |
Hey i am outta my wits to get the folowing output in C. Can ne1 help O/p reqd: 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 and so on. see th pyramid is not the desired one when you open this post.go … | |
I managed to delete the only up to date saved copy of an important Java project I had (I know, I know). I have the compiled .class files and I know it's possible to decompile them. Can anyone direct me to any references or anything to help me do this … | |
This is ClickMe program where it's suppose to change button text once the user clicks the button. Although, program does successfully launch and pops up the "Click ME" button but once it's clicked nothing happens, it doesn't change anything. Any help would be appreciated. import javax.swing.*; import java.awt.event.*; public class … | |
can anyone send me the code for auto generation of an student ID.Pls need in proj urgrnt | |
Hello, I am new to this community but you seemed to be knowlegable with this error so I thought you could help me. I am more of a hobbiest programmer. I get by with doing as little as possible to accent my graphic design abilities. I am currently working on … | |
I looking for a jsp web hosting ? that support visual frameworks ? | |
I am designing one application in which i would like to add messanger. I will distribute my application setup to my friends. what i want is to chat with my friends through this application. Is it possible? (I am not having any website) | |
Hi, I am trying to add a timer countdown of 30 secs to a form I have made. Here is the code inside the start button [code] timer1.Interval = 1000; timer1.Enabled = true; [/code] here is the code inside the timer_Tick [code] timerlbl.Text = timer1.ToString(); [/code] what happens tho is … | |
hello all, I work at a newspaper, and we use QuarkXPress for Desktop publishing...and we have a pretty unfortunate glitch, when Quark crashes, it seems to untick the backup option in the pref's... so I was thinking this would be a good place for a small recursive script, that would … | |
Hi, I’m new to VB and I use the below code to collect local disk drive info, is there a way to store the collected information in a single text box instead of having tables and DataGridView. [CODE] Public Function getLogicalDriveStructure() As DataTable Dim dt As New DataTable dt.Columns.Add(New DataColumn("Description")) … | |
when every i save some thing the box comes up then closes it self |
The End.