-
Began Watching Move grid rows up or down by button click
I have a grid that I am trying to move the grid rows either up or down based on button click. Here is what I have so far. Protected Sub … -
Replied To a Post in Move grid rows up or down by button click
I don't know if you can't directly in the grid, I think you need to update your list/array and bind it again. Something like this: Protected Sub imgBtnMoveUp_Click(ByVal sender As … -
Began Watching button in insert in div via javascript
Hi Everyone, I have a javascript function below: function submitUserInfo() { if (myForm.validator.validate()) { var data = $('get-user-info').serialize(true); var params = data; var url = 'http://www.mysite/engine/'; var request = new … -
Replied To a Post in button in insert in div via javascript
Hi, you're adding the event handler to ".close-pw" before it's been inserted, that's why it doesn't trigger. Should work with this: $("#paywall-img").on("click", ".close-pw", function(){ alert('Close #paywall-img'); $(this).parent().hide(); }); Or, another … -
Began Watching inserting into two tables with one query
Hello Guys I want to insert into two tables with one query in mysql the first table contains a primary key and other stuff the second table contains a foreign … -
Replied To a Post in inserting into two tables with one query
If I'm not mistaken this will work fine: INSERT INTO TableOne(Id, Name) VALUES(1, 'Name 01'); INSERT INTO TableTwo(Id, IdFK, Name) Values(1, 1, 'Name 01 01'); -
Began Watching How to call top Master Page Contents from 3rd child page
I have a Top Master page let say "A" in which i have a button and a textbox. Then there is another Master page "B" which is Child of "A". … -
Replied To a Post in How to call top Master Page Contents from 3rd child page
There's probably a more elegant way, but I use this one: /// <summary> /// Finds parent master page by name /// </summary> /// <param name="masterPage">MasterPage to search on</param> /// <param … -
Replied To a Post in .Net Office Ambiguous Reference
tinstaafl, I'd do it, but I'm not finding a way. This is who it's been imported: Imports Office = Microsoft.Office.Core And this is how it's been used: Office.MsoTriState But the … -
Began Watching Change the HTML attribute location in runtime
I'm tring to move html element on run time. (1) Call function from code behind. (Button1_Click1 event) ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "myfunction", "testFunc(100,200);", true); (2) It redirect to JS function. (This function … -
Replied To a Post in Change the HTML attribute location in runtime
Try document.getElementById('draggable').style.left = y + "px"; But have in mid that if your element is not absolut positioned, top and left will only act like margins. Also, if you javascript … -
Replied To a Post in onClick not working + Help with Google Maps API?
You're welcome! Just mark as solved to help the forum be organized. Seeya. -
Replied To a Post in onClick not working + Help with Google Maps API?
Wich one is line 15 now? -
Began Watching how to do Stored procedure output as html report format
Hi I did the stored procedure in mssql 2012. working fine in server. I have an issue that I need the output of my SP into HTML Report Format in … -
Replied To a Post in how to do Stored procedure output as html report format
If you want the HTML directly from the SP, you can do something like: SELECT '<tr><td>' + MEMBER + '</td><td>' + [LANGUAGE] + '</td><td>' + [TYPE] + '</td></tr>'... But it's … -
Began Watching Tracking app for mobile
We are creating a mobile app for our local school transportation (E-cab) for our thesis. We would like to try if this can be done without the use of internet. … -
Replied To a Post in Tracking app for mobile
You can do it without internet, but all the devices must be connected to the same network(wireless in the case). The Student and Driver app can be done in any … -
Began Watching install Learning Windows 7
How to learn window 7 install? -
Replied To a Post in install Learning Windows 7
Windows 7 has wizard install with step by step instructions. Have you tried booting from the CD and following the steps? -
Edited .Net Office Ambiguous Reference
Hi, I recieved an VB.NET solution to study and then maintain, but I can't compile it, it's giving a lot of errors about Office integration like **'MsoTriState' is ambiguous in … -
Edited .Net Office Ambiguous Reference
Hi, I recieved an VB.NET solution to study and then maintain, but I can't compile it, it's giving a lot of errors about Office integration like **'MsoTriState' is ambiguous in … -
Created .Net Office Ambiguous Reference
Hi, I recieved an VB.NET solution to study and then maintain, but I can't compile it, it's giving a lot of errors about Office integration like **'MsoTriState' is ambiguous in … -
Began Watching .Net Office Ambiguous Reference
Hi, I recieved an VB.NET solution to study and then maintain, but I can't compile it, it's giving a lot of errors about Office integration like **'MsoTriState' is ambiguous in … -
Replied To a Post in How to display the data by using dropdown list
Use the </> Code button -
Replied To a Post in How to display the data by using dropdown list
Koh, if already have the table ready, post the schema and some data if possible. -
Replied To a Post in How to display the data by using dropdown list
AndrisP, but what about the relation of the values and entities? With only 3 tables you could not know what apples are from china and small. -
Began Watching Where To Start
Hello, Please I want to be a good Programmer atleast be able to do something on my own, I will like to know where to start learning from, Which lang. … -
Replied To a Post in Where To Start
jnneson, welcome to this loving, createfull and bizarre world of programming. Based on what you said, I'd suggest you chosse what do you want to create first, and start learning … -
Began Watching Is there really any use for learning C++?
I'm required to learn it for a degree. I already know a bit of Java. But I'm just kind of wondering if it's a waste of time or not. -
Replied To a Post in Is there really any use for learning C++?
I know virtually nothing about C or C++, and I've been programming ASP, C#, VB.NET, Java, JavaScript quite sucefully for a few years without problem, but, I still think that … -
Began Watching Dynamic HTML error
Hi i am facing error in below code not able to add rows could anyone help please <html> <head> <title>Row Added</title> </head> <script> function sample(){ var table='<table width="100" id="+sample+">'; table=table.concat("<tr>"); … -
Replied To a Post in Dynamic HTML error
sandy4a0, take a look at strings syntax: http://www.quirksmode.org/js/strings.html -
Began Watching autorun in pendrive
Hi, I need to open a html file automatically inserting a pen-drive and it will open portable firefox 1 [AutoRun] SHELLEXECUTE=index.html 2 [autorun] UseAutoPlay=1 open=ShellRun.exe index.html ACTION=View the presentation i … -
Replied To a Post in autorun in pendrive
I don't think this belong in Web Development, you should get much faster help in Microsoft Windows or maybe Software Development -
Began Watching onClick not working + Help with Google Maps API?
This is what I was trying to do: The user enters an address, which is autocompleted by Google. Then when they press the submit button, an alert box pops up, … -
Replied To a Post in onClick not working + Help with Google Maps API?
You are missing the closing '}' for codeAdress(), so it doesn't exist. Didn't you see this in the console? -
Began Watching How to display the data by using dropdown list
Hi there, May I know if i want to filter 3 column, for example Column A, Column B and Column C When user select Column A, the mysql query will … -
Replied To a Post in How to display the data by using dropdown list
I think you should use at least 4 tables: Fruits (Id, Name) Countries (Id, Name) Sizes(Id, Name) Defailts(DetaildId, FruidId, CountryId, SizeId, Value) It all depends in how much info you … -
Began Watching Delete after confirmation dialog
Hi guys, so i have a table populated by event details from database and i use a checkbox to select which event to be deleted: echo "<tr> <td><input type='checkbox' name='check[]' … -
Replied To a Post in Delete after confirmation dialog
Did you try like this? $(document).ready(function(){ $("#del_event").live("click", function(){ var events = $("input[name=event_id]").val(); alert(events); if(confirm("Are you sure ?")) { $.ajax ({ type = "post", url = "EMS/DelEvent.php", data = events, success: … -
Replied To a Post in Data grid and data set
Ok, that's great, but you didn't mark it yet, please do so =) -
Began Watching Anybody intrested in making daniweb android app?
If anybody is intrested in helping to make a daniweb android send me a pm. -
Replied To a Post in Anybody intrested in making daniweb android app?
I tried to started an year ago but I got too busy with my job and life choices. I don't think I can help much at the time, I'm just … -
Began Watching restrict window.onbeforeunload for perticular action or url
Hello, How to force **window.onbeforeunload** to act only on pertular action or url? I have a form which has data. if it navigates to another page then `window.onbeforeunload= function() { … -
Replied To a Post in restrict window.onbeforeunload for perticular action or url
Try something like this... if ( window.location.toString().indexOf("myPage.html") > -1 ) { window.onbeforeunload... } -
Replied To a Post in SQL database refresh
Are you sure you are closing the connection in every case? For the description of the error you might be letting the connection open. -
Replied To a Post in Data grid and data set
Sorry mate, I really didn't understand what you want. You want to fill an datagrid only with columns without data? What's the point? The datagrid would be empty. -
Began Watching Data is being sent in database on page load ?
Trying to create a registration page...but i notice that Data is being sent to database on page load. I would like this to happen when the user click on Register … -
Replied To a Post in Data is being sent in database on page load ?
This page is the same page that show the HTML? If so, all this code is being executed before any user interaction... I suggest that you create an hidden input … -
Began Watching Data grid and data set
Public Function getSelc() Dim com As New SqlCommand Sqlcon.Close() Sqlcon.Open() Try com = New SqlCommand("EXECUTE regionSelect '" & txtID.EditValue & "','" & txtRegion.EditValue & "','" & _ txtShortN.EditValue & "','" …
The End.