199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for poncho4all

Well I have a doubt about where can I find some examples about this funcion, I need to use it on a program. Any ideas are welcome xD

Member Avatar for poncho4all
0
120
Member Avatar for samanaonline

hi. at first: i'm sorry for my poor english. i want to Convert a string into a varibale like these: dim a as string="this text must be show" dim b as string="a" 'in my application b's value read from an excel sheet and must point to a variable that exist …

Member Avatar for samanaonline
0
632
Member Avatar for Pokenerd

Hello again, I'm trying to create a text field that only accepts numbers, a single decimal, and a dash (for negatives) but only as the first character. I have conquered everything except for pasting, and have no idea on where to begin. Below is the current code (working!) code that …

Member Avatar for Pokenerd
0
138
Member Avatar for akulkarni

i wish to print sll the combinations of digits of a number eg 123 gives 321 132 231 132.... [code] class numbers { public static void main(String args[]) { int num=123; int x=num%10; int y=num/10; int z=100*x+y; System.out.println(z); } } [/code] this is all my brain is letting me to …

Member Avatar for JamesCherrill
0
114
Member Avatar for SpiritGeek

I'm taking a stab at multiprocessing and I need one process to tell the other to run a given function. On the receiving end, I'm trying to figure out how to interpret the message it gets. I could set up a big nest of if/elif to test for every possible …

Member Avatar for SpiritGeek
0
120
Member Avatar for theausum

I want to make sniffer in C++.So can anybody help me out by providing codes??

Member Avatar for suvirj
0
151
Member Avatar for Cloneminds

For some reason, my numbers aren't adding in correctly and it's taking the -1 sentinel value and adding it into the total. [code=C++] // worthless testing.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using std::cout; using std::cin; using std::endl; int main() { int …

Member Avatar for siddhant3s
0
122
Member Avatar for JohnPhilipps

Good morning, I have been trying to research the net on the subject of "how to set a folder view utilizing a VB.form button", I've found references to the "IFolderView : SetCurrentViewMode Method", but no concrete examples I could work with. I haven't been able to find what I need …

Member Avatar for JohnPhilipps
0
137
Member Avatar for jmw229

Hey guys, Although I decided against using a listbox and simply just using a subform, I did spend a lot of time trying to figure out how to get the listbox to store more than one values for that field. If the listbox multiselect property is on "None", it stores, …

Member Avatar for jmw229
0
154
Member Avatar for sotvisal

import java.util.*; class Array { Scanner in() { return new Scanner(System.in); } void out(String n) { System.out.print(n); } int[] getarray(int n) { int a[]=new int[n]; for(int i=0;i<a.length;i++) { out("Enter A["+i+"]: "); a[i]=in().nextInt(); } return a; } void showarray(int[] a) { for(int c:a) out("Array: " +c); out("\n"); } void sortinc(int[] a,int …

Member Avatar for zeeven
0
118
Member Avatar for turbomen

Dear Sir, It is a simple example using a string. [code] program dowhile; {$APPTYPE CONSOLE} uses SysUtils, OurCrt; var my_words : string; begin my_words := ''; writeln('Enter some words (type "stop" to finish):'); readln(my_words); while (my_words <> 'stop') do begin clrscr; Writeln('You typed:'); writeln(my_words); writeln; writeln('Enter some words (type "stop" …

Member Avatar for turbomen
0
128
Member Avatar for tanvi bahl

hi, i want to connect two machines using C# as peer to peer connection so that teh files are shared with privacy.. through ther Ip addresses how do i do it plz help

Member Avatar for sknake
0
89
Member Avatar for fromb

I had a hard drive crash and stupid me haven't made backups for at least a year. I had several projects for which I used Delphi 5 and have lost all the code. Is there any way of getting the code back by un compiling the exe file?

Member Avatar for Duoas
0
157
Member Avatar for akulkarni

[code] i want a program which asks the user to type the password. If he goes wrong three times exit.this is my code import java.io.*; class password1 { public static void main(String args[])throws Exception { String pass="samarth"; boolean flag=false; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String [] password=new String[20]; int i; for(i=0;i<3;i++) …

Member Avatar for tux4life
0
294
Member Avatar for sk1017

Can some one please do a small XML / ASP coursework for me... I have no idea in the topic.. Had been sick for a couple of weeks and now the cw is due in August.. I am ready to pay for it as well... Please email me on [email]sk1017@mdx.ac.uk[/email] …

Member Avatar for xml_looser
0
85
Member Avatar for pupilstuff

hi guys i just want to perform custom paging in which at the footer of the grid view ,there must be a pager 'pervious/next with numeric' this is what i did [B]in aspx page[/B] [code=asp.net]<asp:GridView ID="TableGridView" OnPageIndexChanging="TableGridView_PageIndexChanging" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" > </asp:GridView> <asp:Button ID="btnConnect" runat="server" Style="z-index: 113; left: 260px; …

Member Avatar for Ramy Mahrous
0
142
Member Avatar for oall

Hi all! Does anybody know how to generate a makefile from a visualStudio project? I kind of remember this was possible years ago, but can't find this option on the VisualStudio Express edition 2008 I am using now... I have to transfer projects from VS to eclipse and need the …

Member Avatar for oall
0
340
Member Avatar for deja_vu

Hi all. Is it possible to apply a checkbox in column header? If yes, how can this be done? And also can different types of options be provided to the user like in Win Vista ? Please reply soon I need it badly. Thanks.

Member Avatar for Piya27
0
78
Member Avatar for laks_samy

hi i am working in vb.net 2005, i am woring network system (my system is client system) how to get my server drive and dir list for the purpose of database backup any one help me. thanks

Member Avatar for samir_ibrahim
0
190
Member Avatar for chathuD

hi im again,,,,,, thanx for daniweb i get the solution to my 1st problum. now the second problum; i have a textbox on my windows form and i need to validate it. rule is user must not able to press any A-Z && a-z && !-* keys on the key …

Member Avatar for Ramy Mahrous
0
151
Member Avatar for anantwaykar

I am new for PHP language I dont know how to run PHP files on out machine so please anyone tell me how to do it thanks

Member Avatar for diafol
0
124
Member Avatar for nivi_14

For instance, let's say I have two images preferably jpeg/bmp that are 128x128 - I would like the code to stitch them together so the resulting image is 256x128. I want a c++ program for it..is it possible using files in c++.

Member Avatar for Salem
0
192
Member Avatar for dwdata

I have implemented a log-in routine that I thought captured SESSION variable to use through out all my PHP pages of my site. Here is the snippet of code which sets the session variables: [CODE] if($result) { if(mysql_num_rows($result) == 1) { //Login Successful session_regenerate_id(); $member = mysql_fetch_assoc($result); $_SESSION['SESS_MEMBER_ID'] = $member['id']; …

Member Avatar for diafol
0
1K
Member Avatar for jayz_raul

hye all....currently im developing a system using active expert sms and pager toolkit. i need to do automation code for receive and sending SMS. Anyone out there can help me out?? im really cant figure it out?? thankz

Member Avatar for SaLMaN-2
0
137
Member Avatar for elidotnet

Hello, i need help in some subject i can't handle with for few days. lets say i have form that handle with some rent order (like....billiboards) after the user choose the number of the billboard and the Location and everything else, he need to choose 2 dates. one for the …

Member Avatar for elidotnet
0
133
Member Avatar for pupilstuff

hi guys , i got a solution at [url]http://amitkumarmca04.blogspot.com/2009/03/custom-paging-in-grid-view-control.html[/url] but i dnt knw which code has to be written in aspx ,which has to be written in code behind and which has to be written in class file and how the how has to be written can any one help …

Member Avatar for dnanetwork
0
91
Member Avatar for nish123

Hello Frndz i m in complete mess... i have to a table with Add/Remove rows features... it should look like this - [code]textbox1 | textbox2 | Add Button[/code] after clicking the add button Row will append and Disable the textbox with values...!!! It looks like this after clickin Add Button.. …

Member Avatar for nish123
0
471
Member Avatar for lancevo3

I am writing a method that has to do with strings and I was stuck on how to go about coding this. Any help getting it started or tips at all would be great. Thanks. MyString::MyString(const char* s) This constructor takes a pointer to a constant C-style string as its …

Member Avatar for lancevo3
0
339
Member Avatar for MONODA

I am making a script which manipulates ID3 tags. I want a certain function to be used on every file in a directory recursively. I have written the script but it is not behaving like I would expect in some cases. If I give it exec perms and put it …

Member Avatar for MONODA
0
88
Member Avatar for goldy736

hi guys, i have a php page with java script embed in it , i have 3 forms in a [B]single page [/B]... namely form1, form2, form3 . form 1 and form2 have a text box , these text boxes get input from users. Now my task is to get …

Member Avatar for essential
0
2K
Member Avatar for tomtetlaw

I was looking through the source code to a game, and I came accross this line: [code=c++] static ConCommand name##_command( #name, name, description, flags ); [/code] I was wondering what all the hashes(#) do ??

Member Avatar for Salem
0
226
Member Avatar for tomtetlaw

I want to be able to find a class with a variable in it: [code=c++] for(int i=0;i<classes.size();i++) { if(class[i].name == classes[i]) return class[i]; } [/code] I think class would be a list of classes that are instanced. where classes is a vector of strings. Is this possible?

0
65
Member Avatar for Zurompeta

Hi all, Been at this for a while now and finally gave in to seek help. Basically, I'm trying to setup a regular expression for a decimal. Where there's 1 to 7 integers in front of the decimal point, and 1 to 2 after the decimal point. This is what …

Member Avatar for Zurompeta
0
76
Member Avatar for rizillion

Hi! I have added an action listener for a button. When i click this button it should go to the second tab in the tabbed pane which i have created. I have created two tabs as follows: [CODE] tab.addTab("Change Password", panel1); tab.addTab("Add new User", panel2); [/CODE] and the action listener …

Member Avatar for llemes4011
0
2K
Member Avatar for melektaus55

I have problem with the responseText property in Safari, Google Chrome and IE. Line 68 - the responseText is empty. This works fine in Firefox and Opera. Also i have this problem with the responseText only in the block that starts at line 61. I don't have problem with the …

Member Avatar for crokusek
0
257
Member Avatar for iamy1204

i am a al atudent...i hv to do a pjt about creating a database of sports day...although i hv learnt some sql about database...but i really don't know how to start to create a database.....eg...use wt software..wt have to include inside.....how can i show my product to my teacher...the pjt …

Member Avatar for iamy1204
0
109
Member Avatar for chrispaul8676

hi, there, I am coming up with a registration form. I want to know how to come up with a readonly form. Firstly, the user has to register themselves on this form, then once the user has pressed the submit button, the user will be sent to the next page, …

Member Avatar for chrispaul8676
0
150
Member Avatar for Pokenerd

Hi, I'm somewhat new to C# and I've created a numbers (backspace, delete, negative, and decimal) only text box. However the way I'm testing whether to allow for negative numbers only allows them to be added if they are typed as the first character. Below is in an if statement …

Member Avatar for Pokenerd
0
134
Member Avatar for theashman88

Hey I just got this book Accelerated c++ and it seems pretty good, but I'm having one problem in chapter 4. When I compile my grading program in chapter 4. I can't get the final version to work. I believe I'm supposed to enter a students name followed by grades, …

Member Avatar for tux4life
0
247
Member Avatar for Tmanchester

Howdy, I am quite unskilled on UI but have been tasked with looking at behavioral problems on our site. It has been observed that the app acts differently when a user clicks on a submit button with a mouse versus tabbing to it and the pressing Enter on the keyboard. …

Member Avatar for Airshow
0
114
Member Avatar for clbembry

I can't get MiniFrames to work and I really have no idea how to. I'm a complete noob when it comes to wxPython as I just started learning today. Heres the code for my GUI so far and I want to add a mini frame as a vertical toolbar along …

Member Avatar for lllllIllIlllI
0
265
Member Avatar for dp_neo

Hi, I am trying to schedule a python compiled file to run using windows scheduler. But it does'nt run successfully The script writes to a SQL server database installed on the same machine as python and the script resides on the same machine. The script imports the urllib, sys, threading, …

Member Avatar for dp_neo
0
110
Member Avatar for 83apple

Does anyone know a way to guarantee that a copyright has not been removed from a script. An example would be this. I put a copyright notice on page one, when the page is loaded it checks with page 2 to see if the copyright is there or not. If …

Member Avatar for kireol
0
88
Member Avatar for samm22

what do u mean by this code below? 1)vector<int> V(alpha); 2)vector<int> V(vector<int>) Whats tat declaring? Its not normal vector declaration. Plz help. Thnx

Member Avatar for samm22
0
87
Member Avatar for culebrin

Hi, I have a DropDownList (filled in the rowCreated method) in a TemplateColumn in a GridViewRow. A user can add a row to select another value in the new dropdownlist created. I need to trigger a validator (I need this because this is only a small part of a site …

Member Avatar for culebrin
0
99
Member Avatar for serkan sendur

hi guys, i want to be able to have three different names for one program. to do that i can create two other setup projects and change the product name, but i dont feel like it is proper way of doing that. so i need to run setup project with …

Member Avatar for serkan sendur
0
85
Member Avatar for elidotnet

i have register form with some information about users, there is few textbox, some dateTimepicker, and some combo box that takes the data from a database (ODBC). the textbox and the datepicker works fine and insert into the data but i cant handle the data bound combo box. PLEASE HELP …

Member Avatar for sknake
0
86
Member Avatar for Ather14

Hi; I want to add a string of numbers(e.g 9999) which are stored in a text file. [code] #include <conio.h> #include <stdio.h> #include <stdlib.h> void main (void) { clrscr(); char ch; int x=1; long sum=0; long integer; FILE *fptr=fopen("thousand.txt","r"); while (ch!=EOF) { ch=fgetc(fptr); ch= .....................I AM STUCK HERE.............. } fclose(fptr); …

Member Avatar for Ancient Dragon
0
977
Member Avatar for gagan22

Hi all, I am making a web page in which i want to use to dates one for "FROM" field and other for "TO". But i want to for this calendar should not show backdate means it will show all dates after today but it will not show yesterday date …

Member Avatar for ablitz
0
110
Member Avatar for dennbibbs

I am new here..i don't really know how to go about this site but guess this is a start and i hope i can be corrected..i need couple of answers to the questions i have below: 1- Discuss any 6 application areas of Computer Graphics? 2- Explain briefly what you …

Member Avatar for niks1241
0
122

The End.