Re: How Do I address ERROR: access violation writing 0x0000000000005140, Programming Web Development by rproffitt … error. Tutorial on that at https://docs.python.org/3/howto/logging.html Howto avoid sorting Programming Software Development by Web_Sailor … =0; i < veck.size(); i++){ newVec.push_back(veck[i]); } Howto preserve the order of elements in my original container and… Re: Howto set password for folder shared in LAN Hardware and Software Networking by sstrg Howto set password for folder shared in LAN Reply to Thread Re: Howto set password for folder shared in LAN Hardware and Software Networking by sstrg Howto set password for folder shared in LAN Reply to Thread Openvpn howto question Hardware and Software Linux and Unix by shwick I'm going through the openvpn howto, section "Configuring client-specific rules and access policies", […url]http://openvpn.net/index.php/documentation/howto.html#policy[/url]. I understand how the network is segregated… Fantastic Subversion HOWTO Community Center by gnulinuxlover I found out a great HOWTO on configuring and using Subversion. This is actually the [B]… Linux Ethernet Howto w/ Samples Programming Software Development by sparty … in Linux to do socket programming. I have written this howto with samples to show a person how to send a… Re: Howto avoid sorting Programming Software Development by csurfer Check your code again. The looping construct you have used does simple insertion which you want and doesn't sort the vector in any way.try your code on an integer vector may be to confirm the problem. Re: Howto avoid sorting Programming Software Development by Ancient Dragon A technique I have used is to use another int array that represents the index values of the original array or vector. Sort the vector as normal but instead of swapping vector values you would swap the index array values. You could use std::sort() for this if sort the index array and write the comparison function to compare strings in the vector… Re: Howto avoid sorting Programming Software Development by Web_Sailor Actually I am using it like this and the inner if loop is creating problems for me [CODE] int count = 0; while(pch != NULL) { if(++count){ for ( int i = 0 ; i < vec.size(); i++ ){ if(count==vec[i]){ … Re: Howto avoid sorting Programming Software Development by Ancient Dragon You can't compare char* with an it -- just won't work. How to pass a textfield value to a pop form? Programming Web Development by jv143irish Howto pass a textfield value to a pop form? I need to pass the value so that the drop down box on the form would autopopulate the items related to that value in the textfield. I'm using PHP. any help please? howto record vhs on my pc with my ati 9800 pro AIW? Hardware and Software Hardware by Soral 3.0 Hi all, I'm new to the AIW series (as a matter of fact -- video capture cards in general...) and I don't know what I am doing wrong. I am trying to record vhs video from my vcr player to my pc -- I believe I have all of the physical components hooked up properly -- however I don't know how to use ATI's software -- I find ATI's documentation very … Howto Setup Backup Server and Copy WebApp Programming Web Development by Bob Bamburg Help... I have just been presented with the responsibility of supporting a JSP application. The person who was handling EVERYTHING has left us (Rest his soul) and did not leave any documentation. The first thing I need to do is create a backup server and copy the application to it. It is running on a Linux ??? platform at the moment. I … Re: Howto Setup Backup Server and Copy WebApp Programming Web Development by jwenting > The first thing I need to do is create a backup server and copy the application to it. Should have been there all along :) >It is running on a Linux ??? platform at the moment. I am VERY comfortable working >on Windows and have some experience on Linux. I have NO experience with JSP but >believe I am a quick study. First… howto: expire cookie at end of session? Programming Web Development by paradox814 so I'm looking at the [URL=http://php.he.net/manual/en/function.setcookie.php]PHP docs[/URL] for setcookie and this is what I see: [PHP]bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] )[/PHP] they say if you want to have the cookie expire when the browser closes then do something … Re: howto: expire cookie at end of session? Programming Web Development by zippee If you do not require the cookie to set on a computer/browser for certain length of time (few hours to few months), you can simply use session. Session is a safer option as some browsers block cookies. By the end of a session, use unset to remove the session value. Sessio will end automatically when the browser closed. Re: howto: expire cookie at end of session? Programming Web Development by Lafinboy The values in [ ] in the function are optional, but if you want to skip one you need to put a placeholder value in, along the lines of: [code] setcookie("TestCookie", $value,'','/','domain.com');[/code] Re: howto: expire cookie at end of session? Programming Web Development by mark1048 [QUOTE=Lafinboy]The values in [ ] in the function are optional, but if you want to skip one you need to put a placeholder value in, along the lines of: [code] setcookie("TestCookie", $value,'','/','domain.com');[/code][/QUOTE] The above code will not work. Try this: [CODE]setcookie($cookieName, $cookieValue, NULL, $path, $domain);[/… Re: howto: expire cookie at end of session? Programming Web Development by Lafinboy Exactly right, sorry, my bad. The expires value is the only non-string value, and so must be set to either null or 0 (zero), which will expire the cookie when the session ends. HOWTO: Run a Query on a Database using ODBC and return all Results into a DGV Object Programming Software Development by Killer_Typo Okay, so currently i am working on a final project at my college, i have been tasked with creating a database administration tool. One of my major hurdles was how to query the MySQL database and return all of the results into a DataGridView object with correct column names. As of right now it will not use the correct data types, all data … Re: HOWTO: Run a Query on a Database using ODBC and return all Results into a DGV Object Programming Software Development by Killer_Typo well i do hope this helps someone :lol: Re: HOWTO: Run a Query on a Database using ODBC and return all Results into a DGV Object Programming Software Development by Hoygaard Thanks dude, it's exactly what I've been looking for :cool: Re: HOWTO: Run a Query on a Database using ODBC and return all Results into a DGV Object Programming Software Development by Killer_Typo [quote=Hoygaard;280616]Thanks dude, it's exactly what I've been looking for :cool:[/quote] awesome, glad i was able to help someone out. Howto | mssql seach and replace? Programming Databases by desiguru In my database, I have two tables: Forum and Files Files have two fields. First one is [B]FileID[/B] and second one is [B]FileAddress[/B]. [B]FileId [/B]field is fine. but in [B]FileAddress [/B]field I have a lot of urls. I want to just change certain parts of url. For example, instead of having [URL]http://ipaddress/FILEPATH[/URL] I want to … HOWTO: Share an SQL Connection between multiple forms within the same project Programming Software Development by Killer_Typo Howdy everyone again, Just thought that i would post another snippet for those interested in working with databases and C# in the windows forms environment. I did some searching on this and found that there was not really any clear concrete answer on how to do this. After some searching i was able to get the general idea and build it into … Re: Howto | mssql seach and replace? Programming Databases by RobStocks [quote=desiguru;282218]In my database, I have two tables: Forum and Files Files have two fields. First one is [B]FileID[/B] and second one is [B]FileAddress[/B]. [B]FileId [/B]field is fine. but in [B]FileAddress [/B]field I have a lot of urls. I want to just change certain parts of url. For example, instead of having [URL]http://ipaddress/… Re: Howto | mssql seach and replace? Programming Databases by MCP Also, look at the SUBSTITUTE function Howto set password for folder shared in LAN Hardware and Software Networking by kshrini Hi, I've a LAN of 6 PCs. All PCs have WIN XP installed. I've workgroup for these PCs. I want to share a folder on LAN which will have password protection. Is it possible? Re: Howto set password for folder shared in LAN Hardware and Software Networking by cguan_77 hi, using password in shared folder is one thing i don't know, but there's an option in local security policy that you can set, which user to log-on and access your shared folder on the network, go to administrative tools, click on local security policy, then a new window will pop-up, click on local policies, then click on user right assignments, …