- Strength to Increase Rep
- +8
- Strength to Decrease Rep
- -2
- Upvotes Received
- 16
- Posts with Upvotes
- 15
- Upvoting Members
- 8
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: Poster #3 : Please don't bump threads, start your own. Please mark thread as solved | |
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 … | |
Re: Might wanna try [this](http://www.formget.com/upload-multiple-images-using-php-and-jquery/). | |
Re: Are your variables on Line 5 were given a value? i.e $username = $_POST["txtuname"]; | |
Re: 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) | |
Re: [Here](https://www.connectionstrings.com/oracle/) | |
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. | |
| Re: 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. |
Re: Try using a variable to store that ID with a SELECT statement and change your query with some AND. | |
Re: Some links are no longer active.. Cheers!! | |
Re: <?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> | |
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 … | |
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 … | |
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 … | |
Re: 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. | |
Re: 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) | |
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 … | |
Re: 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. | |
Re: I suggest you use ADODB for this one. Read [THIS](http://bytes.com/topic/visual-basic/answers/658045-how-run-sum-function-vb6). | |
Re: 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. … | |
Re: Try moving line 29 (End If) before line 33 (End With). | |
Re: 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 … | |
Re: 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? | |
Re: Really no time to tackle this one so read [THIS](http://www.w3schools.com/sql/sql_join.asp). | |
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. | |
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 … | |
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 … | |
Re: 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. | |
Re: 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 … | |
Re: Try googling BLOB.. |