473,554 Members | 4,465 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Latest Bytes Forum

Support forums for various IT topics. Programming languages, databases, systems, applications and more. Subscribe to a community, participate, ask, share your expertise and network.
 
5
6,826
thread by: duffyt60 | last post Jul 2 '19 by: NeoPa
I have created a unbound text box (txtSearch) and a Button to use with the text box for searching all records on a form. The field on the form that I am using for the search is labeled Full_Name. When I try to search for a first name of any user in the Full_Name field nothing happens and I get no error. Here is my code. Private Sub...
5
1,398
thread by: FrackeR011 | last post Jul 2 '19 by: FrackeR011
I am interested in raising floating point exceptions like Division by zero, Overflow, Underflow, etc. I am using functions in fenv.h and signal handling. Whenever, any floating point exception occurs, The problem seems like when inside the function catch_fpe ,the flags set by feraiseexcept somehow gets cleared and no condition is true. ...
12
3,247
tharden3
thread by: tharden3 | last post Jul 2 '19 by: SagarEspark
I'd write it by hand, but I need to whip something up real quick over the weekend. Can any of you guys/gals suggest a great (free) website builder?
1
1,670
thread by: digs | last post Jul 2 '19 by: dev7060
Hi There, I am learning C for university and I am stuck on a question. I am trying to achieve the following. 1. Read Data from file - This works int readfile() {
2
1,419
thread by: johnright23123 | last post Jul 2 '19 by: gits
Hello, I am trying to create a Credit/debit card payment form with validation. I want my form to work something like when I enter the visa card details. it should detect visa and show VISA logo only and hide other companies logo. Kindly help.I tried this code snippet - What I have tried: I tried the code below javascript $(function($) {...
11
1,028
thread by: Mobe123 | last post Jun 30 '19 by: NeoPa
Hi all, i would appreciate your professional help. i am create a restaurant POS. i have buttons on a form, where each buttons adds an item (Burger, Pizza...) into order table and displays it in a continues form. my question is how to add a topping to Pizza for example. let assume a customer order pizza i have the button that adds pizza but if the...
2
904
thread by: AdmiralN | last post Jun 28 '19 by: AdmiralN
Hi, I'm very new to Access and having great difficultly trying to sync 2 combo boxes. I have been using The MS Access help for this issue. I have one Combo box titled sboPackageNumber and and another titled sboPackageDescription. My Table the data is taken from is called Sheet1. The columns on the table are Package Number and Package...
3
1,063
aveeva
thread by: aveeva | last post Jun 28 '19 by: zmbd
Created module like No other products add to cart if restricted product available in cart and vice versa. My Module : app/etc/modules/Brst_Test.xml <?xml version="1.0"?>
1
1,516
thread by: Ptheja | last post Jun 28 '19 by: zmbd
dim cn as odbcconnection Try cn = New odbcconnection("###") Dim mystring as String = "sp_name" cn.open() ' connection established successfully Dim cmd as odbccommand = New odbccommand(mystring,cn) cmd.commandType = commandType.storedProcedure
5
943
Seth Schrock
thread by: Seth Schrock | last post Jun 27 '19 by: NeoPa
I have created a class module that should allow me to sort records in a form based on selections made by the user. In this case, I have the user double click the label to sort by the corresponding field. Everything works great except that it doesn't sort anything. Part of what it does is change the label captions to include up or down arrows to...
0
1,330
thread by: centella | last post Jun 27 '19 by: centella
hi there,when learning flask,i have confronted a question,which is "BuildError: Could not build url for endpoint 'login'. Did you mean 'index' instead?",my code is below. __author__ = 'Administrator' from app import app,db,lm,oid from flask import render_template,flash,redirect,session,url_for,request,g from flask.ext.login import...
1
1,413
thread by: gosai jahnvi | last post Jun 27 '19 by: zmbd
how to generate extend report WebDriver driver; static ExtentTest test; static ExtentReports report; @BeforeClass public static void startTest()
2
1,216
thread by: tecnetaz | last post Jun 26 '19 by: tecnetaz
I created class and define three kind of variables. What are the differences among them? Public Static String c1, Static String c2, String c3?
0
1,229
thread by: lamdeptunhien9x | last post Jun 26 '19 by: lamdeptunhien9x
I have a parent form that launches several child forms. Upon closing the child form I need to update several controls on the parent form. I'm guessing that I do this by using an Event of some type, but I'm fairly new to C# and not sure how to accomplish this. Thanks for your help.
0
3,597
thread by: dako | last post Jun 25 '19 by: dako
Q: My eclipse windowsbuilder won't work with java 12 (I have eclipse 2019 06) I am trying to use a gui in eclipse 2019 06 with JDK 12.0.1. It keeps showing multiple errors. One being the EventQueue and then it tells me that Jframe isn't accessible. It also says several things can not be resolved.
5
1,048
thread by: Daniel1111 | last post Jun 24 '19 by: Daniel1111
Hi, I got a drop-down-menu with dynamically parameters. I have set a specific value in my JavaScript and I would like to change the shown value in the drop-down-menu to the value of my JavaScript when first open the html-file. So I do not want to make a new entry in my drop-down-menu as all needed entries are already available due to the...
1
1,181
thread by: arani | last post Jun 23 '19 by: zmbd
So far this is the code #include "stdafx.h" #include<Windows.h> #include<commctrl.h> #include<Winuser.h> //#include <atlstr.h> #define IDC_BUTTON 101
10
1,500
thread by: KaeKae | last post Jun 22 '19 by: zmbd
I have an Access form with action buttons one of which is a duplicate record button. When activated, the duplicated record has one of the yes/no fields toggled on. It is not toggled on in the originating record; just the duplicated record. Any idea of why it is happening and how to correct or stop it? Any help will be greatly appreciated. ...
1
1,264
thread by: ragavisr94 | last post Jun 22 '19 by: zmbd
Hi, I want to pull values from a text box during the button on-click event in a form and store it as a new make table function. Or While clicking the button, I want to use the values in the text box to create a new table and show as output. Any help would be appreciated.
1
4,669
thread by: gosai jahnvi | last post Jun 21 '19 by: zmbd
WebElement mytable = driver.findElement(By.id("resultTable")); //To locate rows of table. List < WebElement > rows_table = mytable.findElements(By.tagName("td")); //To calculate no of rows In table. int rows_count = rows_table.size(); String rows_count1 = rows_table.get(3).getText(); ...
2
1,572
thread by: elema guyo | last post Jun 20 '19 by: zmbd
write an algorithm that could be used to implement selection sort in a vb program
8
1,393
thread by: GTC07300710 | last post Jun 20 '19 by: zmbd
I have an access database that is split into a front end and a back end database. I have around 50 make table queries that make a table in the back end database. Currently I have the Another Database radio button checked Under filename I have referenced a Path and the back end database name. A user may request the back end database to be...
1
4,157
thread by: Davies | last post Jun 20 '19 by: dwblas
import tkinter as tk from tkinter import * from PIL import Image, ImageTk from tkinter import filedialog from tkinter import ttk import sqlite3 as sq import base64 window= tk.Tk() window.geometry('70x70')
3
1,106
thread by: CD Tom | last post Jun 20 '19 by: NeoPa
My reports have a =date() and =time() in the headings to show when the report was run. However on some computer when the report is run those fields show up with the #Name? I'm sure it has something to do with a reference being missing but which one? Thanks
1
1,075
thread by: alanf89 | last post Jun 20 '19 by: zmbd
hi, i am new to this website. But i was looking for answers to solve a problem which I have with access. would you be able to help me please? I have a query named "qry_BO_NA_Search". I also have a form which it's job is to search by different criteria from the query. In the form, I want a button to export the search results only...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.