8,298 Topics

Member Avatar for
Member Avatar for ZS2002

Hi, I have wrapped Web Test requests in transactions, example: this.BeginTransaction("00_002_ClickSignInButton"); WebTestRequest request2 ... WebTestRequest request3 ... this.BeginTransaction("00_002_ClickSignInButton"); Normally, in Loadrunner, the transactions think times are coded at the end of the transaction. Example: lr_start_transaction(".....") .... lr_end_transaction("...",LR_AUTO); lr_think_time(10); I need to know how the above can be done in Visual …

0
49
Member Avatar for pauloselhombre

Hey there folks. I'm in the middle of learning C# using the book 'C# and Game programming: A Beginner's Guide' by Salvatore A Buono and I've come to a bit of a problem. The example code for nested if and else-if statements does not work as intended. I could move …

Member Avatar for pauloselhombre
0
133
Member Avatar for hangulagerson

1. Write a program to implement a static circular queue. It should include the following functions: i) Enqueue – To add an element to the end of the queue [4] ii) Dequeue – To remove an element from the front of the queue [4] iii) IsEmpty – To check whether …

Member Avatar for yellowSnow
0
115
Member Avatar for avirag

hiiiii I am making a C# .net window application and i am using VS2008...... Can anyone tell me how can i do good designing or there is any software with the help of that i can improve the designing of window applications........ kindly help me or suggest me some link …

Member Avatar for avirag
0
157
Member Avatar for AnkhUNC

So I've got an assignment for class. The point is to read in characters to a string. If there are 7, print the 7. If there are 10, print the 10. Less than or more than, print an error. It is also supposed to convert keyboard characters into their associated …

Member Avatar for AnkhUNC
0
95
Member Avatar for PyroPaul2

This code works fine and can be called numerous times without any problems. However, if the bitmap is resized (made bigger), I get an access violation. This is not the case if the bimap is made smaller. I can confirm that the BMPSize & BitmapBytes array size tally at all …

Member Avatar for DdoubleD
-1
550
Member Avatar for Darth Vader

Now I use a C++ code where I save a color like this: [code] public: System::Drawing::Color ColorSaved1; ColorSaved1 = textBox1->BackColor; [/code] I wonder how I can convert this to C# ?

Member Avatar for ddanbe
0
74
Member Avatar for VidyaYadav

Hi, In my datagridview there are 3 columns. I am entering values in all of these but second and third column values are not compulsory. So user can escape those two columns. But, when inserting those values in database If the cell 2,3 contain value then to insert that value …

Member Avatar for sanch01r
0
1K
Member Avatar for SFletch

I've written a small web db app, designed to sit within another page (in an iframe). It is designed to be called with a parameter (or two). iframe html calls Default.aspx?Parameter=4 The default page does nothing except check for the existance of the parameter and store it a session state …

Member Avatar for kvprajapati
0
134
Member Avatar for nirveshverma
Member Avatar for jeyson

a program that will ask a location and selete the item in that location[code][/code]

-3
61
Member Avatar for sparksterz

Ok this is driving me nuts. I'm working in C++ and trying to delete an element from a vector It's going something like this (dirPath is a stack of directories, and dirPtrs the list of what a directory points to) [CODE] for(int i = 0; i < dirPath.top().dirPtrs.capacity(); i++) { …

Member Avatar for sparksterz
0
367
Member Avatar for jonahmano

I am building a program with Name, Roll No., Marks in different subjects, Total and Average. Just wanted some advice. Pls encourage me. class Report { static void Main () { string s = " "; int a; /*,c,d,e,f,g,h,i;*/ Console.WriteLine ("Enter the Name:"); s= Console.ReadLine (); Console.WriteLine ("Enter the Roll …

Member Avatar for sknake
-2
140
Member Avatar for nirveshverma

HI friends her my code i want to correct this code please help me thanks and i want to connect or read multiple client at a time using System; using System.IO; using System.Net.Sockets; using System.Text; namespace SocketConsoleclient { class Program { static void Main() { byte[] receivedBytes = newbyte[1024]; IPHostEntry …

Member Avatar for sknake
-1
181
Member Avatar for VBNick

Hello! I am trying to read a value from the registry, but I can't get it to work. Everything compiles, but RegQueryValueEx keeps producing an error. this is the code: [code lang="cplusplus"] #include "stdafx.h" #include <windows.h> #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { HKEY hKey = …

Member Avatar for VBNick
0
171
Member Avatar for wanted08

hey .. how are u all ?? I have c++ problem .. i tried to solve it but i couldnt get the same input .. [COLOR="Green"]here is the problem:[/COLOR] Given the following file called “input.txt” which contains the freezing and boiling points of several substances. Note: the title is not …

Member Avatar for Tom Gunn
1
504
Member Avatar for ekkh90

I'm totally lost in my c++ class.. can someone guide me or help me?? Problem 1 Write a C++ program that writes all binary sequences of length 15 into a file binary15.txt. -The sequences must be in increasing lexicographic order. The output filestream must be created with the command ofstream …

Member Avatar for AirGear
-2
112
Member Avatar for needhelpe

hello! I am having problems with a palindrome program. I have to input an integer between 1 and 9. and then the output has to be: for example if I input 4: output: 1234321 if I input 5: output: 123454321 if 1 output: 1

Member Avatar for twomers
-2
389
Member Avatar for Tvirusx1

Hello I am new to DaniWeb and this is my first Thread. I am currently trying to develop a bot for the Game DarkOrbit. I used WPE Pro and I found out that I could controll the Spaceship by sending specific Packets (I have some Packet codes already). Well heres …

Member Avatar for Tvirusx1
0
171
Member Avatar for gmauger

Hi All, I'd like to declare a static array in a header file. Is this possible? I assume there is a fairly simple solution to this, but I have not been able to find documentation on the correct syntax for this. Just to be abundantly clear, I'd like to do …

Member Avatar for gmauger
0
15K
Member Avatar for Jimmalmquist

i need help with a maskedtextbox in a C# applikation. I want want it to display the date in the following format "00.00.0000" but it refuses to show the "." instead it shows "00,00,0000". I have tried several different solution but none of them works. The mask is correct but …

Member Avatar for ddanbe
0
181
Member Avatar for santhoshvarma.a

hi, i want some examples regarding user control in asp.net with c# and how to retrive data from main page and send it other pages thankx & regards A.Santhosh kumar

Member Avatar for guru_sarkar
0
53
Member Avatar for Gaiety

Hi, i am presently working on C but there are some situations i need to know the assembly code of corresponding C program. if any can provide some general info of c - assembly it would be appreciated. i have a program called [CODE=C]int main() { printf("Hello,Plz Help\n"); return 0; …

Member Avatar for gerard4143
0
209
Member Avatar for kyllle

Hi all, Going to begin learning C# and then ASP.NET and was wondering if anyone knew of any good websites teaching beginner level C# or if anyone has any advice for me before I begin my mission! Thanks in advance! Kyle

Member Avatar for avirag
0
126
Member Avatar for PennKen2009

I'm new at C++ and I'm trying to right a program that will generate random numbers from a range of 1-19. Here's how it should work, the program will generate 5 random numbers all ranged 1-19 and in random order. Once it chooses the first number, that number used for …

Member Avatar for zati
0
760
Member Avatar for makymakaru

Is pass by value and call by reference the same? I mean i know theres no call by reference in C but there is similarity int he output of the two isn't it? why do we use call by value and pass by value? what are its uses?

Member Avatar for Tom Gunn
0
103
Member Avatar for sahmed

I want to implement FIX protocol in C#. Can anyone tell me what documents should I read to implement this protocol? Also, if there is any library available in C# to implement this protocol, it will be a lot help.

Member Avatar for sahmed
0
99
Member Avatar for john_beginner

hello all, as i know that if we don't want to specify the static path of databse then , we can use "Server.mapPath" like,( in any .aspx page ) [code] str = "Data Source=.\\SQLEXPRESS;AttachDbFilename=" + Server.MapPath("student1.mdf") + ";" + "Integrated Security=True;User Instance=True"; [/code] but my question is that , why …

Member Avatar for john_beginner
0
366
Member Avatar for nikhil91

Hello...i m nikhil i m student of comp engg. Nw we are doing work on project..but we hav some problems in it..i request u ..plz help me in my project i send u..my project nmae..plz give me fast reply...m waiting for u r reply.... MY SUBJECT QUESTION IS Que: My …

Member Avatar for matome
-4
74
Member Avatar for yamid

How to read a part of a text file and put them in an array in c# 0 #1 1 Day Ago I have a text file including several strings and doubles. I want to find a specific string in the text and read all double numbers after it which …

Member Avatar for sknake
0
757
Member Avatar for NinjaLink

I am currently having problems with my getline in main. Whenever I use it, it prints out the last word in my input file twice. I do not know how to get rid of it. Any help is appreciated. [B]Input file:[/B] noon dog race car cat mom bob [B]Current Output:[/B] …

Member Avatar for NinjaLink
0
100
Member Avatar for cwats124

Even though I am 8 :), I WANT to make an OS. Something to be proud of. I normaly use VB but I am now starting a bit of C++ programming. Thanks , Campbell

Member Avatar for pspwxp fan
-1
134
Member Avatar for ShailaMohite

I have designed some reports in C#.net. I have used the Database Files option in Crystal report wizard.The path to all reports are the same, but now i have moved the database to other location, i only chaned the connection string in my application. Now the application runs fine, but …

0
69
Member Avatar for shilpa88

How to import any web file in to our window application on c#??? i m making prj in whiich i need to add files in my prj.. plz help me out.............

Member Avatar for avirag
0
134
Member Avatar for ssmeshack

hai there, Im using ASP .NET c#... I have created form to send to email. Im using try catch... it giving that message that the email sended successfully. But it didnt appear in my mail account. I dont know where is the problem in the coding. Please check the coding …

Member Avatar for ssmeshack
0
97
Member Avatar for pavan146
Member Avatar for ddanbe
-1
123
Member Avatar for yamid

I have a text file including several strings and doubles. I want to find a specific string in the text and read all double numbers after it which are located between two slashes"/". The number of double data could be unknown-but we just know they are bounded with two slashes- …

0
65
Member Avatar for Sphero

Hello, I created a new maskedtextbox and gave the mask property the value 000.000.000.000, which should act as an IP address box. Now, when I open my configuration panel and configure my IP address, it jumps to the next mask while pressing the . key. Is there any way to …

0
44
Member Avatar for kumar rohit
Member Avatar for gerard4143
-3
49
Member Avatar for PyroPaul2

Hi all. Could anyone give me a pointer please? I've almost finished a project I'm working on but have one last issue to resolve. I have an image on a form that I apply a colour gradient to. However, when I grab this to create a bitmap (this.DrawToBitmap(BackGroundBmp, BackGroundRect);) I …

Member Avatar for DdoubleD
0
317
Member Avatar for UmH

hi , i'm new in programming world i want to write c++ class in c it was ok .. when i change to c++ i've problems [CODE] #include <iostream> using std::cin; // using std::setprecision; using std::cout; using std::string; using std::endl; // using std::streamsize; class STD1{ int id; string name ; …

Member Avatar for dattu mhaismale
0
171
Member Avatar for shaifymehtadnn

1. Develop sigma and pie bonding and anti bonding molecular orbitals of 2s and 2p

Member Avatar for ShawnCplus
0
32
Member Avatar for pymatio

Attached is a project that lets you control a sports league. If you enter these teams: [CODE] FOO A FOO B BAR BAZ [/CODE] & the restart the program it should print out something like this: [CODE] FOO A vs BAR FOO B vs BAZ [/CODE] but it doesn't it …

0
85
Member Avatar for neithan

I'm new to C++, and i've seen some C and C++ code. I tried array[] and vector<> so i see i can use both, why should i use what way to work with vectors? Furthermore, i've seen a lot of "array[]" in this forum... so, any lead? Thank you! Oh …

Member Avatar for neithan
0
385
Member Avatar for Zohar

Hi, This is a very basic question, but I can't seem to get working, I've a set of numbers that I need to display in the following, this is a class function btw. The ouput should be something like { 1, 2, 3, 4, 5} (there are {} brackets and …

Member Avatar for Zohar
0
268
Member Avatar for prinju

can any one give me a c program for finding the length of the string and also to compare it with other strings with the help of linked list

Member Avatar for DangerDev
0
91
Member Avatar for minigweek

Hi, I am working on building a C# Winforms application which will allow me to login to a forum or site and perform certain tasks. I am stuck at the very 1st step. I cannot login to the forum. Here is what I have tried so far, the [B]Login[/B] button …

Member Avatar for hohy
0
1K
Member Avatar for froggy1976

Good evening, I am writing a program in C++ for a Tic tac toe game. Here are my directions: Create a C++ console application that allows two players to participate in a tic-tac-toe game. The program will be responsible for deciding who wins the game. The program should include the …

Member Avatar for froggy1976
0
329
Member Avatar for ineedhelp3

i am haveing alot of problems in my computer programming 1 clas in school and was wondring if any people on here would be kind enough to help me out with some programs 1 of them is this i need to make a basic program in the compiler that allows …

Member Avatar for Grn Xtrm
0
91
Member Avatar for koreanbo1

Hi I am very new to C++ and I was told to make a program that start with the ammount you choose but it has compound interest of 6% a year (0.5% a month) and you take out 500 dollars a month, at what months and years would the account …

Member Avatar for kolosick.m188
-1
103

The End.