Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~16.9K People Reached
Favorite Tags

56 Posted Topics

Member Avatar for ZER09

Does anyone here know the deafult setting for the ReadyBoot(not ReadyBost)? I tweaked its settings a year a go and I want to restore it to its default setting. I cant find any sources around the web. I will appreciate for any help will come. thanks.

0
153
Member Avatar for ZER09

I have a new battery pack for my acer aspire 4750 laptop, it hust a 2 weeks old, actually it is working pretty good. I use batterycare to check charge level, so while i am charging and it reached 80% I remove the AC, then recharge it again at 40%.(the …

Member Avatar for fallout4player
0
315
Member Avatar for Otir
Member Avatar for Otir
0
327
Member Avatar for nur faeza

hericles is correct, it is returning an empty set, try to check "cust_id", it might be that the value of the cust_id is not in the database. And could you do me a favor, please use parameterized query, that could solve many issue, that might be you will encounter in …

Member Avatar for ZER09
0
309
Member Avatar for ZER09

I have this in my my.cnf wait_timeout=1800 interactive_timeout=1800; net_read_timeout=1800; net_write_timeout=1800 but when i execute show processlist; I have processes that still running more than 4500sec even they are in 'Sleep' command. please help about this, thank you.

Member Avatar for ZER09
0
154
Member Avatar for ZER09

It could be a dumb question, and tried to search for it and found nothing. I been using mysql for years(not that to long) but i never had tried mysql transactions. Now my question is, what would happen if i issue an insert or delete statement from multiple clients using …

Member Avatar for ZER09
0
363
Member Avatar for ZER09

anyone can give me an advice for improving this piece code, it give me a complexity of score of 10. There is something telling in back of my mind that it can be improve, but this is the best i can do. arggg public override bool Validate(Control control, object value) …

Member Avatar for Traevel
0
132
Member Avatar for nicksuave

you can try to look on to your event viewer. also try to look at application and services logs->microsoft->windows->diagnostics-performance. you can find there what is the program preventing you from shutting down

Member Avatar for nicksuave
0
425
Member Avatar for ZER09

On the system cooling policy under the processor power management I set the policy to active. And here is the scenario. I have an acer aspire laptop, running a time consuming process or working with visual studio with mysql service running, I basically take reboot at least once a week. …

Member Avatar for ZER09
0
163
Member Avatar for ZER09

Hello, good day to all I hope this the right section to post the thread. I just upgraded my win 7 ultimate to win 10 pro lately, and i got a problem about UAC. I have 3 user account on my windows 2 local user and the elevated built-in admin …

Member Avatar for ZER09
0
329
Member Avatar for ZER09

I have i5-2430M on an acer aspire 4750z laptop, then last year I upgrade the ram with DDR3-1600 CAS 11, now I am confused because in the ark.intel.com it was stated that memory type should be DDR3 1066/1333. Now my question is why the ram still supported by the cpu(core …

Member Avatar for rubberman
0
689
Member Avatar for ZER09

there is folder on a system protect on windows system restore and it has an active protection but it was marked as missing, the folder is label "G:", i dont know how i can remove this. can someone can help me about this. thank you

Member Avatar for Kevin_14
0
181
Member Avatar for ZER09

this just what happen a moment a go, i turned on my wireless router(dlink dir-600) then turned my laptop, but the problem is i cant connect to the internet, so what i did is restarted my router(BTW my wimax modem is connected and has good signal strength) but i got …

Member Avatar for ZER09
0
252
Member Avatar for ZER09

for example i have [System.Flags] public enum PrescriptionTypePrint { PrescriptionOnly = 1, InstructionOnly = 2, Both = PrescriptionOnly | InstructionOnly } how i could make it simplify replacing the || to | on the code below PrescriptionTypePrint pp = PrescriptionTypePrint.Both; if (pp == PrescriptionTypePrint.PrescriptionOnly || pp == PrescriptionTypePrint.Both) { //execute …

Member Avatar for ddanbe
0
117
Member Avatar for ZER09

class Base { [Display(Order = 0)] public int FirstProp {get;set;} [Display(Order = 1)] publuc string SecondProp {get; set;} } class Derived : Base { [Display(Order = 2)] public string ThridProp {get;set;} } I was expecting that the properties will have an order like this | FirstProp | SecondProp | ThirdProp …

Member Avatar for Ketsuekiame
0
235
Member Avatar for aluhnev

You can try this int[,] a = new int[4, 4] { { 2, 3, 4, 5 }, { 34, 56, 25, 67 }, { 22, 44, 55, 77 }, { 45, 80, 22, 13 } }; Console.WriteLine(a.Cast<int>().Max());

Member Avatar for ZER09
0
239
Member Avatar for ZER09

Hi Is there way to enable the mail function without access to php.ini? The mail function was disable by my hosting provider, and there is no way to enable it because it was shared hosting. I already search in google how to enable mail function, but got nothing. I was …

Member Avatar for almostbob
0
574
Member Avatar for Ajay_9

If am correct you want to generate random question from the database. Possible solution is to retrive all question specified by your criteria in the database, then you will enumarate it and pick one by one "You can set a variable here that will change value from true or false …

Member Avatar for castajiz_2
0
258
Member Avatar for SkyCross
Member Avatar for YA RAMSAMKER
Member Avatar for ZER09
0
125
Member Avatar for ZER09

hello to all good day, BTW is there way to know what item of the bindinglist has been edited? i came up with this problem when i create a view in mysql and a class in c# then i populate the binding list with that class, then i used it …

Member Avatar for ZER09
0
182
Member Avatar for ZER09

hi everyone, could you give me an advice for hardware specs needed to run a small database server with around 40 to 50 users. actually the setup is the users maybe in other location. i need recomendation what specs, and what brands is the best, all including the router, and …

Member Avatar for rubberman
0
278
Member Avatar for ZER09

I tried to create a context menu for a griedview and when i test it it works greacefully private void gridView1_PopupMenuShowing(object sender, DevExpress.XtraGrid.Views.Grid.PopupMenuShowingEventArgs e) { ContextMenu c = new ContextMenu(); DevExpress.XtraGrid.Views.Grid.GridView view = (DevExpress.XtraGrid.Views.Grid.GridView)sender; DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo HitInfo = view.CalcHitInfo(e.Point); if (HitInfo.InRow) { view.FocusedRowHandle = HitInfo.RowHandle; c.MenuItems.Clear(); c.MenuItems.Add("sample", sampsss); c.MenuItems.Add("sample", sampsss2); c.Show(view.GridControl, …

Member Avatar for Merletyco
0
386
Member Avatar for sanket044
Member Avatar for ZER09

with a little research a come up with my script in creating a canvas that would look like this. ![54d736fd19df9f8ac8a05733938b3e59](/attachments/small/2/54d736fd19df9f8ac8a05733938b3e59.png "align-right") it has a multiple link one link per circle. function binTree(aData, source, baseLink){ var canvas = document.getElementById(source), c = canvas.getContext("2d"); c.translate(0.5,0.5); c.fillStyle = "#ffffff"; c.fillRect(0, 0, canvas.width, canvas.height); c.strokeStyle …

Member Avatar for ZER09
0
213
Member Avatar for fuhanspujisaputra

if iam right i think you didnt set the value of newVal after you initialize it. and one thing i think you need a select query.

Member Avatar for fuhanspujisaputra
0
172
Member Avatar for ZER09

function setDefaultValue(str){ var arrayValue = new Array(); var rowString = str.split(NextRowSepConst()); for (var i = 0; i < rowString.length - 1; i++) { var valueSplit = rowString[i].split(ValueSepConst()); for (var ii = 0; ii < valueSplit.length - 1; ii++) { var a = valueSplit[ii]; arrayValue[i][ii] = valueSplit[ii]; }; }; globalHasDefaultValue = …

Member Avatar for ZER09
0
632
Member Avatar for ZER09

does any one experience this while using mdi the code is something like this using a as new form a.mdiparent = this a.showdialog() end using then when i tried to show the new form it will close automatically. why is that happening? thank you

Member Avatar for ddanbe
0
95
Member Avatar for ZER09

I came up with this query now when i tried to create a view it failed to create SELECT aDate FROM ( SELECT @maxDate - INTERVAL (a.a+(10*b.a)+(100*c.a)+(1000*d.a)) DAY aDate FROM (SELECT 0 AS a UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 …

Member Avatar for ZER09
0
332
Member Avatar for sathish_nadu

hello can i intercept this thread? which is faster `select max(NumOfOrders) from table` or `select NumOfOrders from table order by NumOfOrders desc limit 1`

Member Avatar for pritaeas
0
114
Member Avatar for ZER09

hi is there any software that can controll the fan speed of the cpu, I already try "fan speed" but it is not compatible with my laptop. I also try in bios, but my bios doesnt have an option to edit the cpu speed. I am using acer aspire 4750z, …

Member Avatar for Webville312
0
218
Member Avatar for ZER09

I have an Acer Aspire 4750Z, i found this problem this morning only when i try to turn on my laptop but it doesnt turn on. then my first thought i think its battery is weak so i recharge it turn it on and it will, but for almost 2 …

Member Avatar for ZER09
0
249
Member Avatar for ZER09

i got problem in setting the reCapcha it tank auth when i try to change it theme color, the recapcha image now is showing on the top of the form. this is the code i edit auth.php function _create_recaptcha() { $this->load->helper('recaptcha'); // Add custom theme so we can get only …

Member Avatar for ZER09
0
119
Member Avatar for ZER09

is their a way that if i will connect an usb device on the usb port but the computer will read as serial device that is connected on the serial port, so the usb device will be read on COM port. I have huawei E1552 modem that will support GSM, …

Member Avatar for JorgeM
0
154
Member Avatar for dancks

if you just want to learn regular expression have try for "expresso regex" it just a small program that will teach you on regex

Member Avatar for diafol
0
351
Member Avatar for ZER09

I have a simple php library that i am using, now i wnat to upgrade it. I want to create namespace on it so my class will be inside on the namespaces bu t i got an error when i i tried to use namespace. here a sample <?php defined('protect')||(header("HTTP/1.0 …

Member Avatar for ZER09
0
164
Member Avatar for ZER09

I created a class that will handle the session_set_save_handler but after executing session_start i will get server error this is my code, <?php defined('protect')||(header("HTTP/1.0 404 Not Found")); require_once INCLUDES . '/query.php'; class MySQL_Session{ private $dbConnect = null; protected $savePath; protected $sessionName; private $sessionTable; private $sessionColumn; public function __construct() { $c …

Member Avatar for ZER09
0
202
Member Avatar for ZER09

i tried to create a dll using c# and now i have something like this I have 5 files Extension.cs, Encryption.cs, MySQLQuery.cs, etc. and in my MySQLQuery file i have somthing like this using System; using System.Data; using System.Text; using MySql.Data.MySqlClient; namespace gLibrary { public class MySQLQuery { protected internal …

Member Avatar for nmaillet
0
270
Member Avatar for ZER09

i got a problem on my apache server it doesnt load automatically the index.html but in index.php it works fine i have this configuration on httpd.conf, i am running it on my local computer using windows 7 i tried this configuration <IfModule dir_module> DirectoryIndex index.html, index.php </IfModule> but i dont …

Member Avatar for lps
0
88
Member Avatar for ZER09

i created a dll file using vb.net then it has a shared function that will execute a stored procedure of mysql but my code is something long and when accessing it, it has a big risk that it can produce an error if there is an incorrect string input, i …

Member Avatar for thines01
0
529
Member Avatar for ZER09

hello everyone Can someone explain to me about this two syntax of php the => and ->, i dont have any idea what this is. I already googled it but didnt find anythig. Actually I tried to look the source code of joomla and found this two syntax. I will …

Member Avatar for ZER09
0
100
Member Avatar for ZER09

Hello to all I am playing with c# this past week, because i want to learn this language. Now i have a question about my with my program. First i have a 1 MDIparent form and 1 MDIchild form with one text box on it, then in the MDIparent I …

Member Avatar for ZER09
0
799
Member Avatar for ZER09

can any one tell if there existing database administration tools like mysql workbench but for mssql i know about sql management studio, but there is other one who will manage mssql other than SSMS? I will appreciate for any help will come. thank you.

Member Avatar for pritaeas
0
60
Member Avatar for ZER09

hi, to all i was thinking how i can create a class that the connection string will be stored there. now i have 4 files the teamSystem.java, login.java, and main.java, and connect.java. the connection string should be written on the connection.java, now i want that other 3 files should communicate …

Member Avatar for ZER09
0
189
Member Avatar for ZER09

i got this error to on my database "Host 'localhost' is not allowed to connect to this MySQL server" and when i tried to use mysql workbench i got this "cannot connect to the database server" what is wrong with my database, its the second time happen to me. yesterday …

Member Avatar for smantscheff
0
162
Member Avatar for ZER09

[ICODE] mysqldump -u root -p pass**** coke_pos > testbc.sql [/ICODE] i tried this command to generate back-up of my database but i got an error about, eroor in my syntax i have mysql 5.5.11 community server and i am using mysql workbench 5.2, i am using windows 7 please help …

Member Avatar for smantscheff
0
168
Member Avatar for ZER09

can anyone can help how to create a live search in vb.net 2008 using combo box. example when i try to search a name then a press a then there should be a drop-down with a list of suggestions of name. here is my code [CODE] Private Sub ComboBox4_SelectedIndexChanged(ByVal sender …

Member Avatar for ZER09
0
4K
Member Avatar for ZER09

hello to all, i got a problem in vb.net program, i dont how to delete multiple rows in a single table i used "truncate" command. this is my code for deleting: [CODE] Private Sub tranc() Try Dim dbconn As OleDbConnection Dim dbcom As New OleDbCommand dbconn = New OleDbConnection(cnnstring()) dbcom.CommandText …

Member Avatar for debasisdas
0
88
Member Avatar for ZER09

Hello to all, I got problem in my vb.net program in publishing it. I am using Microsoft Visual Studio 2008, when I publish my program and I got the setup file and when i tried to run into another computer I got some error saying that it cant connect into …

Member Avatar for bincly
0
170
Member Avatar for ZER09

hello to all, i got some problem in vb 6 in reports. actually i tried to create a simple ordering system, and i used ms acces for my database, now the problem is that when i generate a report it will show the first data of the row of the …

Member Avatar for ZER09
0
117

The End.