-
Marked Solved Status for .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 .Net Office Ambiguous Reference
It's been a while, but just to register the solution: Visual Studio 2008 didn't show, but there was two references on the .csproj file and that's what caused the problem, … -
Revoked Solved Status for .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 … -
Marked Solved Status for .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 Google Maps Api AutoComplete address
You're welcome. Just close the topic please. If you have futher questions you should open a new one =) -
Replied To a Post in Google Maps Api AutoComplete address
google.maps.event.addListener(autocomplete, 'place_changed', function() { var place = autocomplete.getPlace(); if(place.address_components !== undefined && place.address_components.length > 0 ) { // selected option } else { // just typed and hit enter (no … -
Replied To a Post in Migrating to Linux - Any Tips?
Thanks guys. I think it's possible to make the move using an Win VM for what anything that isn't going well on linux. I will even keep my current HD … -
Gave Reputation to rproffitt in Migrating to Linux - Any Tips?
At the office we don't try to move entirely to Linux for many reasons. Since we make our bread and butter on being efficient we use the Windows machines for … -
Began Watching Google Maps Api AutoComplete address
Hello, i want to know, is there any way to force user can only select the address provided in dropdown list? Currently everything working well, but user can proceed without … -
Replied To a Post in Google Maps Api AutoComplete address
You can't prevent the user from just typing and hitting enter, but you can know if he picked an option or not. From google docs about place_changed event: > This … -
Began Watching vba codes to connect mysql database
please check this code and tell me what is the problem with this ..... i get error*"operation is not allowed when the object is open"* dim conn as new adodb.connection … -
Replied To a Post in vba codes to connect mysql database
This really looks like could be in a homework text book, lol. Hope not btw. -
Replied To a Post in Migrating to Linux - Any Tips?
Thanks for the input guys, but just to be clear, I've already tested some distros on virtual boxes and USB Sticks, but I've never created, let's say, a complete envirioment. … -
Gave Reputation to Freshly in Migrating to Linux - Any Tips?
I would suggest for you to try Arch, it only includes the essentials and you could customize it to your liking. You could try the xfce desktop environment. Yes you … -
Began Watching jquery-bootstrap append problem in chosen drop-down
 I am appending bootstrap chosen drop-down on button click, the javascript is not triggering that why it is showing simple multiple select. $(document).on('click', '#more_provisions_button', function () { console.log('Incre … -
Replied To a Post in jquery-bootstrap append problem in chosen drop-down
Which bootstrap multiple select plugin are you using? Doens't look like anyone I know. Any how, your select is missing ` multiple='multiple' ` -
Created Migrating to Linux - Any Tips?
Hey fellas. I've been using Windows as my main OS since I sat on an PC with win 95. Now I think is time to finally change to Linux! The … -
Began Watching Migrating to Linux - Any Tips?
Hey fellas. I've been using Windows as my main OS since I sat on an PC with win 95. Now I think is time to finally change to Linux! The … -
Began Watching How do i insert true and update with false column with one button
How to use one button to insert true into column Status and when clicked the second time will update column Status with false This is the table clicked the first … -
Replied To a Post in How do i insert true and update with false column with one button
I think the best option to you is to check if the user is already in the database. Basically you could only update your insert query to be something like … -
Gave Reputation to gentlemedia in Drop down selection function
> They are accustomed to change classes and ids . if they see there is an event in html they understand something is going on that item It's best practice … -
Began Watching I need a php script that will run automatically every day ?
Anybody help me ? I need a php script that will run automatically every day on Morning 09:00 O'clock. But my script not working. My script. <?php date_default_timezone_set('Asia/Calcutta'); $now = … -
Replied To a Post in I need a php script that will run automatically every day ?
PHP is executed when there's a request. Normally the first request comes from the browser when the user type the url and hit enter. Cron jobs and Windows tasks acts … -
Gave Reputation to gentlemedia in A panel with a scroll bar that fades?
Instead to hard code an empty div tag at the bottom for the fade effect, you could also use a pseudo element (:before or :after) for your CSS gradient. .scroll-div … -
Began Watching slideshow plugin
HI guys, the tiems has come for me to renew my photography site as it's really "dated", so much so that's it's not even responsive...eh eh. In anycase, I'm still … -
Replied To a Post in slideshow plugin
I can't say much because I've never actually used one, I've ended up creating my own solutions for each need, but I was helping my brother start with web dev … -
Began Watching HOW TO DISTINGUISH BETWEEN LEFT AND RIGHT MOUSE CLICK WITH JQUERY?
HOW TO DISTINGUISH BETWEEN LEFT AND RIGHT MOUSE CLICK WITH JQUERY? -
Replied To a Post in HOW TO DISTINGUISH BETWEEN LEFT AND RIGHT MOUSE CLICK WITH JQUERY?
If you bind 'contextmenu' event that only capture right clicks, like: // FROM https://api.jquery.com/contextmenu/ $( "#target" ).contextmenu(function() { alert( "Handler for .contextmenu() called." ); }); Or you can listen to … -
Replied To a Post in Date Time Operation in vb.net
You mean only count business days? Take a look at this other thread: http://stackoverflow.com/questions/1044688/add-business-days-and-getbusinessdays Or this one: http://stackoverflow.com/questions/279296/adding-days-to-a-date-but-excluding-weekends -
Began Watching Date Time Operation in vb.net
I want to do something like counting date, it's truly like this First I click on one date time picker which called 'dtpstart'. Then I typed number of dates on … -
Replied To a Post in Date Time Operation in vb.net
I didn't understand why you got a For loop... This should work (i assumed you got an txtPeriod for entering the date) Dim dtStart As Date = dtploanstart.Value Dim intPeriod … -
Began Watching Drop down selection function
Hi this is giri i need ur help that is i am trying to select two drop down option in html and i want compare to options if those options … -
Replied To a Post in Drop down selection function
@TextWiller, you forgot the '#' on the jQuery selectors. But since you're using jQuery, I think this is better: <select class="whatched_select" > <option value="1">one</option> <option value="2">two</option> </select> <select class="whatched_select" > … -
Began Watching Jquery UI bounce nowworking as expected in Internet Explorer
HI guys, I'm redoing my old photography website and I'm still at the very beginning of the project. Somewhere I saw a jquery bounce functionality implemented and I thought I'd … -
Replied To a Post in Jquery UI bounce nowworking as expected in Internet Explorer
I just tried on my IE v11.0.9600.18205 (on Widows 8.1) and it's working with no glitchs. No "auto scroll" happening. Can you post the HTML and CSS of the banner … -
Began Watching A panel with a scroll bar that fades?
On our site we have a "News and Information" section at the top of our landing page. Right now it looks like this:  I'd like to change this … -
Replied To a Post in A panel with a scroll bar that fades?
There's a quite simple "workarround" for this. Just put a div on the bottom to act like an "fader". Take a look on a simple example: https://jsfiddle.net/alemonteiro/ffko2g45/1/ The background on … -
Replied To a Post in website development with asp.net
Oh boy, you got a lot to learn, it'll be fun. First of all I suggest you to read about basic fundamentals of the web: http://www.tutorialspoint.com/web_developers_guide/web_basic_concepts.htm http://pt.slideshare.net/lemiorhan/fundamentals-of-web-development-for-nondevelopers Then, if you … -
Began Watching Web Page Forms that will email the user a message from the information
I don't know too much about web development or making web pages although I can make simple html pages that have forms and so forth. I can do a little … -
Replied To a Post in Web Page Forms that will email the user a message from the information
As hericles said, you'll still use HTML/JS/CSS for the front-end but you'll need a server side script to send the e-mails. I also suggest PHP because it's simple to install, … -
Began Watching website development with asp.net
hi guys. i badly need help with a project am new to asp.net and i have to develope a website using visual studio express for web. i have no idea … -
Replied To a Post in website development with asp.net
Do have experience with programming and with web? Or this will be your first experience with them? Any way, you can check out some sample projects in asp.net: https://msdn.microsoft.com/library/ee332498%28v=vs.100%29.aspx http://aspnetboilerplate.com/Samples … -
Gave Reputation to CimmerianX in windows 10 system files are huge!
Seems like a lot of space for windows system. Try the following tools. I use them myself frequently. It will give you information and the ability to clear space. WinDirStat … -
Began Watching How to send an email after a new record is made in the database?
The system basically work in this series: a new registration is made in the database, the system sends me an e-mail notifcando a new record. -
Replied To a Post in How to send an email after a new record is made in the database?
If you doubt is who to know when to send an email, i see two options for you: 1. Use cron jobs that will run at specific intervals, identify the … -
Began Watching the java script library
Am currently interested in delivering user experiance web and mobile applications.There are several amazing libraries so far.What are some of the best libraries that I should start with in this … -
Replied To a Post in the java script library
Hello timtim, welcome to the web dev world. My default web apps now a days use at least the following libs: * jQuery * jQuery UI * Bootstrap For charts: … -
Began Watching slideshow extender
hey guy iam working with ajax slide show extender , it work perfect with one album , but i have two separte albums , i wrote the code for first … -
Replied To a Post in slideshow extender
Why don't you define a parameter like albumId on your GetSlides method? Then you can do something like AjaxControlToolkit.Slide[] slides; if ( albumId == 1 ) { slides = new … -
Began Watching how to call function with parameter
I wan to call oracle database function I tried this but i am getting error `ORA-06550: line 1, column 7: PLS-00221: 'F_GET_DESC' is not a procedure or is undefined ORA-06550: …
The End.