Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #1K
~7K People Reached
Member Avatar for twistercool

I WAS CREATING AN INVENTORY SYSTEM USING VB 6 AND ADODC. HERE IS MY CODE [CODE]Private Sub Command1_Click() Dim temp2 As Integer Dim temp As Integer If Text1.Text = 0 Then error.Show Else If Text1.Text > 0 Then purchase.Show Form38.Hide Set rs = New ADODB.Recordset rs.Open "select *from purchasetable", cn, …

Member Avatar for twistercool
0
201
Member Avatar for Christos 696

Hi everyone, i am new in this Forum. I am from Greece so I'm sorry for my bad English. I must create an "e-shop" website with [B]Microsoft visual web developer 2010[/B] and [B]sql server 2008[/B]. I have done the database with sql, and the next step is make the website. …

Member Avatar for Christos 696
0
140
Member Avatar for abelingaw

I'm having problem trying to find out what is wrong with a code. Here's what it is supposed to do. 1. The messagebox should only appear if a record already exist in the database 2. If there is no record of the same information, then it would save the new …

Member Avatar for abelingaw
0
150
Member Avatar for Nithyamaha

protected void Button3_Click(object sender, EventArgs e) { GetRandomPassword(); } public static string GetRandomPassword(int length) { char[] chars = "$%#@!*abcdefghijklmnopqrstuvwxyz1234567890?;:ABCDEFGHIJKLMNOPQRSTUVWXYZ^&".ToCharArray(); string password = string.Empty; Random random = new Random(); for (int i = 0; i < length; i++) { int x = random.Next(1, chars.Length); if (!password.Contains(chars.GetValue(x).ToString())) password += chars.GetValue(x); else i--; …

Member Avatar for Nithyamaha
0
145
Member Avatar for raheel88

Hello all, VB6 newbie here. I've got a basic form containing a list box, with two command buttons; one to add items to the list, and one to remove items. The two command buttons work fine, but I want to disable the "Add" button once there are 8 items in …

Member Avatar for raheel88
0
1K
Member Avatar for Shreya J

Hello All , I am working in a project in which I have been asked to use Telerik Gridview control. I was curious to know that why should we use Telerik Controls when we can do the same thing using ASP controls. Like in gridview the collapse and expand feature …

Member Avatar for Shreya J
0
109
Member Avatar for yongj

I'm teaching pointers to myself through my book and I'm stuck on one of the practice problems. Here it is: [CODE]//What is the output of the following C++ code? int x; int y; int *p = &x; int *q = &y; *p = 35; *q = 98; *p = *q; …

Member Avatar for Eagletalon
0
177
Member Avatar for yeeitsneo

hi. can anyone here tell me how can i allow certain characters only into a text box. for instance, a user can only input from these three letter (ABC) thank you so much.

Member Avatar for Cruize_Invades
0
264
Member Avatar for theBear

[code=c] #include <string> #include <vector> #include <iomanip> #include <istream> #include <fstream> #include "...\myUtils.cpp" void inputCases(string[], vector<double>); void inputPrice(string[], vector<double>); void displayReport(string[], vector<double>, vector<double>); using namespace std; int main() { double tmpCases, tmpPayRate; vector <double> cases; vector <double> payRates; ofstream file; file.open("salsaCase.txt"); string tmpName[5]; tmpName[0]="Mild"; tmpName[1]="Medium"; tmpName[2]="Sweet"; tmpName[3]="Hot"; tmpName[4]="Zesty"; char mans=0; …

Member Avatar for Cruize_Invades
0
2K
Member Avatar for cyberdaemon

Good day, I want to delete a record from a single table but some of the filed on sigle record is related to other table on my database. how would i delete it.. i used this script delete from faculty deptid = (select deptCode from dept) all i want is …

Member Avatar for cyberdaemon
0
126
Member Avatar for fawadkhalil

Hi all I have declared a Session variable in web handler i-e .ashx file like below [CODE] int SaleID; HttpContext.Current.Session["tempSaleID"] = SaleID; [/CODE] Now i want to remove this Session variable in class file i-e .cs In normal cases Session variable are removed using [CODE] Session.Remove("SaleID"); [/CODE] but in this …

Member Avatar for Cruize_Invades
0
100
Member Avatar for smeboyds

I have a database that continually receives information from outside sources. I then use SQL code to take this data and move to different databases based on the information received. As it stands right now, if I receive a '1', '2', '3', from an outside source, we manually move it. …

Member Avatar for Cruize_Invades
0
101
Member Avatar for rotemorb

Hello I'm quite new to Jquery, so bare with me please. I've searched google, but I couldn't find an answer to my question. I'm developing an asp.net 4.0 application, and i wrote a Jquery inside my content page: [CODE] $(document).ready(function () { $("#Button1").click(function () { alert("Hello"); }); }); [/CODE] I …

Member Avatar for rotemorb
-1
115
Member Avatar for deceivingrakesh

Guys i have a textbox where user enters a telephone number , i need to check in the database whether there a same telephone number in the database already , i want this to happen as soon as the textbox looses focus without posting back , is there any way …

Member Avatar for Cruize_Invades
0
110
Member Avatar for Cruize_Invades

my connection string goes like this... [CODE]Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MyDB;Data Source=mysource[/CODE] I am using windows authentication, iis 7 and Classic ASP to to connect to SQL express 2008. Using UDL i can connect to my SQL. I can also connect to my SQLExpress when i am running my Database …

Member Avatar for rajendra.parmar
0
173
Member Avatar for unknowndevil41

Currently using ASP.net 2005 I am havin an errot in update statement my code is: Dim myConnection As OleDbConnection Dim myCommand As OleDbCommand Dim ssql As String = "UPDATE passwrd SET password ='" + TextBox1.Text + "'where username='" + TextBox2.Text + "'" myConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; " _ & "Data …

Member Avatar for hielo
0
134
Member Avatar for Cruize_Invades

HI currently I am studying asp.net, how ever I manage to view my image just in my test.aspx page using this code [CODE]<img src="img/image.jpg" >[/CODE] but when i use it on my login.aspx using the same code no image shows up. can anyone help me about this?

Member Avatar for Cruize_Invades
0
65
Member Avatar for Cruize_Invades

Hello! I am currently doing some authentication in Active Directory. Our AD is running in Windows 2008 Server and I manage to log-in based in our AD. However I also want to get the group where the user belongs. but I don't know how. Can anyone help me? here is …

Member Avatar for Stitch1920
0
146
Member Avatar for Cruize_Invades

Guys please help me. I am kinda new to ASP.net Luckily I've manage log-in using forms authentication so that i could have a customize log-in page based on my Active Directory. Now a Problem arise. I have to connect to my SQL EXPRESS database using the log-in I use. My …

Member Avatar for Cruize_Invades
0
83
Member Avatar for Dryems

Hi guys i have just installed windows 7 on ma pc but failed too configer the IIS "internet information service" in order to enable me run ma asp pages. is iis installed already or not?

Member Avatar for Cruize_Invades
0
104
Member Avatar for Cosa

Hi, Im new to VB. Im just trying to do a simple if statement that will open a specific form based on user input. The database requires me to scan in a barcode from a card. I then want to check if that barcode number is already in the database. …

Member Avatar for jireh
0
346
Member Avatar for Pareshja

Hi Guys, I have completed a vb6 application that uses sql2000 database. I have sql client installed on my pc. I want to install the application on a machine that does not have sql on it. Will it work or do I need to install sql on the clients machine. …

Member Avatar for Cruize_Invades
0
88
Member Avatar for guru511

hi, can u plz tell me how to slpit a string using a delimeter... exp: my string is like guru\text now i want it to be splitted into guru text any 1 plz tell me...

Member Avatar for QVeen72
0
145
Member Avatar for Pastafarian

Hi, I'm just starting out in programming and I'm currently making a small program which shows how Bubble, selection and Insertion sorts work. I've found a small program which bubble sorts a user selected number of integers and shows each step at which these are sorted (each pass). However this …

Member Avatar for Pastafarian
0
157
Member Avatar for coco86

lets say i got a few string exp: 11111233NR+0001030 210NNR 99NR+001030 339NNE each substring got dif meaning ....11111 for the ID , NNR for the location. etc do you have any idea how to split them in each substring. pls help me...

Member Avatar for coco86
0
114
Member Avatar for paodzy

what should i do to combine this two programming language,but i want to run it in vb6.

Member Avatar for Byaptia
0
110
Member Avatar for Abdul Farhan
Member Avatar for jireh
0
84
Member Avatar for paodzy

can you please help me how to random a series of choices, i actually use case statement but the problem is everytime i run the program the same order of choices is being shown.

Member Avatar for Cruize_Invades
0
109
Member Avatar for Cruize_Invades

I heard that using VB 6.0 I can disable the start button. But I've search to found what code to be put but unfortunately i cannot found one. I also know that code for win98 differ from XP OS... So pls some one teach me... Thanks a lot..

Member Avatar for Cruize_Invades
0
119