Posts
 
Reputation
Joined
Last Seen
Ranked #378
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
100% Quality Score
Upvotes Received
16
Posts with Upvotes
15
Upvoting Members
8
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
9 Commented Posts
5 Endorsements
Ranked #340
Ranked #464
Member Avatar for k89mmk
Member Avatar for Anagha_2
0
2K
Member Avatar for abelingaw

I'm currently developing an SMS sender using C# (2010). The program does send the message but the message received was not the message sent, (i.e " yt+ 35") and while running the program several times, the received message do not contain anything at all, even the senders number. I am …

Member Avatar for rproffitt
0
264
Member Avatar for UK-1991

Might wanna try [this](http://www.formget.com/upload-multiple-images-using-php-and-jquery/).

Member Avatar for lps
0
228
Member Avatar for blueguy777

Are your variables on Line 5 were given a value? i.e $username = $_POST["txtuname"];

Member Avatar for blueguy777
0
274
Member Avatar for alaad

There are SQL statements which differ in the way they are written but faster when it comes in loading data. You should also consider some factors: Network speed (if it is networked) Transmission line capacity (still, if networked)

Member Avatar for Suzie999
0
294
Member Avatar for kingwash
Member Avatar for abelingaw

I would like to develop a web-based Disaster Management System but don't know where to start. Possible features may include: * Situation Awareness * Missing Person Registration * GIS (or google map) Suggestions and ideas? Thanks in advance.

Member Avatar for abelingaw
0
264
Member Avatar for pstanford

The Orientation property isn't available on VB6 by default (IICRC). You need service pack 6 (maybe 5, not sure anymore), not the service pack from MS website. Just search the web for the SPs.

Member Avatar for pstanford
0
422
Member Avatar for Tatar_1

Try using a variable to store that ID with a SELECT statement and change your query with some AND.

Member Avatar for pzuurveen
0
278
Member Avatar for ~s.o.s~
Member Avatar for ankit1122

<?php $link = mysqli_connect('localhost', 'root', 'admin','admin') or die("Could not connect database"); $result=mysqli_query($link, "SELECT * FROM questions"); $row = mysqli_fetch_assoc($result); ?> <label for="login-username">Secret Question:</label> <select name="sq" id="sq" style="width:250px; height:30px"> <?php do { ?> <option ><?php echo $row['question']; ?></option> <?php } while ($row = mysqli_fetch_assoc($result)); ?> </select>

Member Avatar for diafol
0
209
Member Avatar for abelingaw

I'm trying to ban a user from logging in to a site after 3 failed attempts. Code: <?php require 'konek/dbcon.php'; if (isset($_POST['login'])) { session_start(); //$link = mysqli_connect('localhost', 'root', '','abra') or die("Could not connect database"); if (empty($_POST['uname']) || empty($_POST['passw'])) { header ('Location: login.php'); die(); } if (ctype_upper($_POST['uname']) || ctype_upper($_POST['passw'])) { header …

Member Avatar for hericles
0
3K
Member Avatar for abelingaw

I'm nearly finish with a site template for a shopping cart. I am encountering a problem, updating of quantity. Say: On the Product Table page: If the user clicks on the same product to add it, only the quantity should increment on the Cart page (Quantity is displayed using a …

Member Avatar for abelingaw
0
579
Member Avatar for abelingaw

I have a column named Emp_Id and set as primary key (not Auto Incr).I am trying to generate an ID (employee) and save it into a SQL database. The logic goes this way: Generate the id number with a prefix plus the number (i.e. EMP0001). Display it on a textbox …

Member Avatar for pritaeas
0
632
Member Avatar for Jollyyy100

What part are you trying to connect your database to? Is it the project or a datagrid or listview? If it is your project, the link sir Andre has given will show the basics.

Member Avatar for millyn
2
3K
Member Avatar for zebnoon

Try using Rose Setup Factory. Been using it in creating installers from VB6 projects. Enables Serial Key for installer or even an Expiration date. [Click Here](ww.indigorose.com/products/setup-factory)

Member Avatar for IconKana
0
275
Member Avatar for abelingaw

I'm having trouble connecting to a database file on another PC. In this case, my PC is the client. Using: 1. Windows 7 32-bit on both PC's. * Same Workgroup * Connection verified using cmd (PING) * Connected using hub (straight through) * Workgroup status: Joined 2. MS Access 2007 …

Member Avatar for jhai_salvador
0
186
Member Avatar for micca.jhai

The answer is already on your code (line 12 - 25), just place it on the correct event. You can try the form's load or activate event. You'll figure it out eventually. Good luck.

Member Avatar for mridul.ahuja
0
176
Member Avatar for Sajjad_1

I suggest you use ADODB for this one. Read [THIS](http://bytes.com/topic/visual-basic/answers/658045-how-run-sum-function-vb6).

Member Avatar for abelingaw
0
287
Member Avatar for krunal1986

Maybe something like this. Private Sub DataGrid1_Click() Dim x As String x = Adodc1.Recordset("ID").Value Adodc1.RecordSource = "Select * from Users where ID = '" & x & "'" Label1.Caption = x End Sub Note that: I used an ADODC since you did not specify what connection type you are using. …

Member Avatar for abelingaw
0
176
Member Avatar for abu taher
Member Avatar for Sajjad_1

Sorry but you can't just actually subtract (or any arithmetic operation) 2 SQL statements. (or maybe for UNION or JOINS) What you need to do is modify your 2 SQL then subtract the value of 2 specifice columns on those tables. Dim sum1, sum2 as String sum1 = Adodc1.Recordset.Fields("Fieldname") 'replace …

Member Avatar for Sajjad_1
0
1K
Member Avatar for noselbond

I assume that you are referring to the value of the column RcvdPcs on table tblReceived. > prevent user > to released more than the received pcs. Here's an idea, how can you released 6 items if you only received 5?

Member Avatar for abelingaw
0
130
Member Avatar for vishal anand.s
Member Avatar for abelingaw

Just wanna ask if it is possible to add 1 or more DETAIL sections in a VB6 Report. If it is, any link to such or steps on how to do it. Thanks.

0
86
Member Avatar for abelingaw

Was trying to save the contents of a listview column (2nd column) into a table in the dbase, 1 column of the table per content of the listview column, meaning only 1 row will be affected. Here's my code using while loop. Fcount = 2 Scount = 1 While Scount …

Member Avatar for abelingaw
0
219
Member Avatar for abelingaw

I'm having trouble with the AND operator when I used it 3 times. If Text1.Text = "THIS" And Text2.Text = "THAT" and Text3.Text = "THOSE" then Call Display elseIf Text1.Text = "THIS" And Text2.Text = "THAT" and Text3.Text = "THOSE" then Call Display2 else MsgBox"Failed" End If It always ends …

Member Avatar for Minimalist
0
189
Member Avatar for fx.eko

I think he meant: I get the error when saving the file/project. The only reason I can think is that you are using the **FLASH8.ocx** file. Try removing that control in your form.

Member Avatar for fx.eko
0
2K
Member Avatar for habenero

Do you mean creating a path for a control that when clicked, opens a Word (MSOFFICE) file? Dim wrdApp As New WORD.Application wrdApp.Documents.Open App.Path & "\Reports\Leave.docx" wrdApp.WindowState = wdWindowStateMaximize wrdApp.Visible = True wrdApp - variable name, can be changed Reports - folder where the file is located (this folder is …

Member Avatar for abelingaw
0
155
Member Avatar for y0yie_333