Search Result
Collapse
88 results in 0.0018 seconds.
Keywords
Members
Tags
-
How do I use scrollbars in Python Grid
My ignorance is monumental. Maybe they automatically apear when the data exceeds the table. -
How to show and count empty cells for a field / table?
Hi,
1.
I want to show all the records where a specific data is not populated. Currently in the database, for a specific field some cells are empty.
I am wondering, how to build the query which will show the records where the cells are empty for a specific field?
2.
Also, say, [TableA] is linked to [TableB] via junction table[JtableAB]. How do I show which records in [Table] A are not linked... -
Add listbox items to the dynamic checkbox text in a dynamic table
I need to dynamically create multiple checkbox, the data source is a listbox... that listbox receives a sqldatasource with a select statement. So basically what i want is to show users with their own names on a dynamic table. is there any other way? please help :)
...Code:protected void Panel17_Init(object sender, EventArgs e) { // Create a new HtmlTable object. HtmlTable -
dgotlib started a topic Setting width of <td> elements when creating table dynamically in JavaScriptin JavascriptSetting width of <td> elements when creating table dynamically in JavaScript
I need to create tables dynamically in Javascript, with column widths of 20%, 55%, 15%, 10%.
I can't figure out how to make this work.
I created css classes for each of the four columns.
My css style sheet which, in part, looks like:
...Code:table{ font-family: Arial; text-align: left; border-collapse:collapse; table-layout:fixed; } .col1{width:20%;} } .col2{width:55%;}Last edited by Meetee; Apr 2 '12, 04:50 AM. -
Corwin Moyne started a topic Can I have a form that will allow me which of 2 tables my inputs are for?Access 2010in AccessCan I have a form that will allow me which of 2 tables my inputs are for?Access 2010
OK. I have 2 tables with identical fields. One is called 'External Dies' and the other is 'Internal Dies'. Although the fields in the tables are identical, they have different relationships to another form, 'Product Codes'. The Internal has a one to one relationship to its 'Product Code', where as the External has a one to many relationship as it can be used with many Product Codes. Because of this, I assume I need a separate table for each. I would... -
Form for entering data into linked Table
I have a linked table called "dbo_tblNot es".
dbo_tblNotes has the following fields:
id (Data Type = Number, Indexed = No)
note (Data Type = Memo)
addDate (Data Type = Date/Time)
uid (Data Type = Text)
private (Data Type = Number)
I am trying to create a form that I can use to enter notes and comments. Any notes that are entered would be stored in the "dbo_tblNot es"... -
Form with text box for adding Notes using linked table
I have a form called "Problem Records Details" which contains a Text Box called "txtNotes".
The Record Source for the "Problem Records Details" form is a linked table called "dbo_proble ms". However all Notes are stored in a linked table called "dbo_tblNot es". The "ID" field in the "dbo_tblNot es" table references the "ProblemID" field in the "dbo_proble ms"... -
Auto Increment ID field of Linked table when entering on Form
I have a linked table called "dbo_proble ms". I have a form that uses "dbo_proble ms" as its data source. The linked table "dbo_proble ms" has a field called "ID" which is a Number. This field requires a value and when I enter a new record I want the ID field to use the last record ID + 1. So for example if the last record ID that was entered was "17586", then if a new record was entered the ID... -
Add Attachment to form
I have a linked table called "dbo_proble ms", and a form called "Problem Records Details". I have created a table called "Attachment s". The "Attachment s" table contains the following fields: ID, Problem_ID, and Attachment.
ID is Primary Key (DataType=AutoN umber)
Problem_ID is (DataType=Numbe r) (Indexed Yes No Duplicates)
Attachment is (DataType=Attac hment) (Required = No)
... -
hide column and row line in a table without disable the table border
hello evrybdy...
i need help...i wanna make a table that there is no column or row line exist in the table. yes,i want the border of the table line to be seen....
here's are my coding....
...Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>
Last edited by Dormilich; Jan 5 '12, 11:53 AM. Reason: please use [CODE] [/CODE] tags when posting code -
Looking for some help with JOIN logic
Good Day,
I have a number of tables that need to be joined to gether and up to now everything has been fine. I now need to exclude old files that are identified by a sequence number; newer records have a higher number.
The joins currently look like this:
...Code:FROM a INNER JOIN b ON(a.resource_id = b.resource_id) INNER JOIN c ON(a.resource_id = c.apar_id) INNER
-
Create a table from an xls or csv file
Hi!
New to this forum im looking for an easy way to create a table from ex. an xls or csv file?
Would be ok to create all columns as VARCHAR, I could then correct "Type" after the table creation manually.
Have a MySQL 5.5 server on my Mac Pro running OS X 10.7. Also have Sequel Pro, MySQLWorkbench installed, and have phpMyAdmin set up on the server as well.
Im def. NOT an expert in MySQL!... -
How to use SET to Update a Pre-exiting Table
I'm still fairly new to MySQL and I've been given a task by my lecturer that I just can't make work. She wants us to use SET to add a row to a table instead of the regular VALUE method. Here's my code and the error I received:
...Code:mysql> INSERT INTO Instructors -> SET FacId = 96 -> SET FirstName = 'Chris' -> SET LastName = 'Explorer' -> SET HomePhone = '555-1492'; ERROR 1064 (42000):
-
DataSource Table Editing
Hey I added a DataSource to my project to make accessing my MySQL database easier but one portion of my application requires me to be able to edit the tables in my database.
I can get the tables to list using this:
How do I get it so when I chose an option from the TreeView...Code:foreach (DataTable dataTable in modernEngineDataSet.Tables) { treeView.Nodes.Add(dataTable.TableName); } -
How to transfer a 2d array into a table
I have a 2d array, with 10 columns, and somewhere between 200 and 10.000 rows. I was hoping there was a simple(and efficient) way to transfer the entire array into a table containing over a million rows, and growing.
I allready know how to transfer it by looping through the array, adding 1 row at a time. However, this is not that effective, and I believe that one of the problems stems from the fact that the main table has its indexes...