User Profile
Collapse
-
thank you. I did it. -
How to use / implement a created Google Cloud API
hi guru,
I would like to implement my custom model but do not know how to do that.
In detail, I would like to use the result of PREDICT tab, which is in AutoML Vision UI, as a function namely function A. After that, I have some code in C# which will call function A to use.
Following is what I tried:
In Google Cloud Platform Console, at (PROJECT_NAME)$ directory,
-add request.json... -
COMMAND LINE for generating script for oracle table
Hi all,
I am using Oracle_OraClien t11g and PL/SQL developer. I am finding a COMMAND LINE of DOS to generate a script.sql. That means the COMMAND LINE will be sth as following:
_ Input: name of table
_ Output: file sql.script
I think I can find such a COMMAND LINE like that in "..\product\11. 1.0\client_1\BI N" or "\product\11.1. 0\client_1\LIB" . However, I have not found... -
I did it, just by using inserted table.
Thanks for your helping!Leave a comment:
-
I am sorry to bother you but could you explain it more specific?
I did something to understand more about inserted & deleted table, but I get the message "Invalid object name 'inserted'."Leave a comment:
-
How to identify the ID of row which has been modified?
Hi all,
I have table Demo:
Code:CREATE TABLE Demo ( ID int PRIMARY KEY, Name char(50), BeModified int DEFAULT(0) )
I think I should create an TRIGGER AFTER UPDATE
Code:CREATE TRIGGER UpdateRow ON Demo AFTER
-
Your help is so useful!
Finally, I used AFTER TRIGGER, and to check time I used datepart() function.
Have a good day!Leave a comment:
-
Because I am a beginner in sql server, I will be very appreciate if you could give me a more specific example.
The most important thing I wonder now is how can I check the system time such as wether it is between 0:00 am and 6:am or not?
I have realized that sql server 2005 has keyword "time", but it doesn't seem to be a data type.Leave a comment:
-
@nbiswas: in fact, I am writting a web application.
Yep, I will describe it more specific.
At the beginning point I have a trigger as following:
Code:CREATE TRIGGER AddRow ON Demo FOR INSERT AS UPDATE UpdateInfo set new=new+1 where id=1
Code:CREATE
Leave a comment:
-
Trigger in a certain period of time of day
Hi all,
I have two tables A(a1,a2,a3), B(b1,b2,b3) and a period of time delta t [t1,t2].
When it is between t1 - t2 of time, if there is a row inserted in table A, the field b1 of table B will be updated such as b1=b1+1.
Moreover, I also have a web application which can assign value for t1, t2 through an aspx page.
Could you tell me how to do that?
Thank kiu so much -
yep, thank kiu Frinavale so much!
In my country it is just 4:00 pm now. Wish you to have a new nice coming day!Leave a comment:
-
haiiiz ... but I can't distinguish between "individual ListItems" and "all of the ListItems". If I have lstHistory as my listbox, could you leave some code lines for me to understand more about "individual ListItems" and "all of the ListItems"?
Thank kiu!Leave a comment:
-
-
Datagridview with the reverse order of items
Hi all,
I have a datagriview and a data table. The order of rows in my datatable is r1,r2,r3,r4,r5, but now when displaying in datgridview I need to show them in the order of r5, r4, r3, r2, r1 ... That means I want to perform it in the reverse order.
Have you got any suggestion for me?
Thank kiu so much! -
Thank kiu! I have done it by the following way:
Code:if (GridView1.Columns.Count > 0) GridView1.Columns[0].Visible = false; else { GridView1.HeaderRow.Cells[0].Visible = false; foreach (GridViewRow gvr in GridView1.Rows) { gvr.Cells[2].Visible = false; } }
Leave a comment:
-
@Onlyprad: I know your intention, but I can't understand why it does't work ...
@Frinavale: But how to add the style to the last three items?
With syntax you mentioned before : lstHisttory.Att ributes.Add("cl ass", "boldListItem") ; it then apply for all of my items .Leave a comment:
-
Display a datagridview with a certain columns when web application runs
Hi all,
I have some following code:
Code:DataTable dt = m_Data.GetInfo(); GridView1.DataSource = dt; GridView1.DataBind();
Notice that this can not be done in the designing step because my datasoucre...Last edited by Frinavale; Nov 30 '09, 03:15 PM. Reason: Please post code in [code] ... [/code] tags. Changed quote tags into code tags. -
@Frinavale: It worked well, but all items' styles in my listbox changed, not just the 3 last lines.
@onlyprad: After doing as your suggestion, the text of 3 last lines changed in content, not in format: "<span class=\"boldLis tItem\"> my text </span>
I think there is no way to do this because of its limited attributes. Maybe I will use datagridview.
Thank you all!Leave a comment:
-
Format some lines in listbox
Hi all,
I have a page of aspx and a listbox. I want to format font for 3 last lines of my listbox with Bold Style by code. Notice that my lisbox has more than 3 lines, and I don't know exactly text for the first three items of the list until my web application runs.
Lines of text are added to my listbox by the following way:
Code:foreach (DataRow row in dt.Rows) {
-
No activity results to display
Show More
Leave a comment: