.:: Jasa Membuat Aplikasi Website,Desktop,Android Order Now..!! | | Order Now..!! Jasa Membuat Project Arduino,Robotic,Print 3D ::.

Word press website is not displaying in internet explorer

0 komentar

Wordpress website is not viewable in internet explorer.

Remove last edited post and it will work great

Just before some time I was doing some changes in word press themes of my website www.techraga.com and I found it stopped working. I was able to see only header and the subject line of my last post. I tried to open the website in Firefox and it worked out of box.

My next job was to go for google and I found some tips to solve the issue like they said disable JavaScript site meter but unfortunately I didn�t install this tool yet on my word press. I was numb and I thought to create a new post and see if its visible in Internet explorer and I was amazed that it worked very much fine.

I went through everything that might have gave a problem and I realized that I deleted on line from my previous post and just after that I was not able to view the site properly on Internet Explorer. After this I just deleted my post and wow it was working fine again.

So if your word press web site is not getting display or not viewable in Internet Explorer 6 or IE 7 just remove the last edited post and create that post once again it will work fine. You don�t need to go for disabling the add-on or anything like that.

Hope it was helpful and you liked it.

Thanks for being here

Suni

c:\windows\system32\credui.dll is either not designed to run on windows or it contain an error

0 komentar

c:\windows\system32\credui.dll is either not designed to run on windows or it contain an error

Simple solution replace the DLl file.



Before few days in my office one colleague told me that she was getting issue in many of the program

Each time when she run the program she get an alert message that bad image and this program cannot be run c:\windows\system32\credui.dll is either not designed to run on windows or it contain an error. I dint know what was the issue in credui.dll but I had to make it done as fast as possible.



For me best fastest possible solution was to replace the dll with some dll file of other machine and I did try that. I tried to replace the dll with my Vista machine dll and I found I do not have permission to replace the file.



I took owner ship of windows system 32 fold and then I tried for this and found I was not able to replace the file. I tried everything but I found no success in replacing the dll in system32 folder.



After this I did a simple trick and that worked

First I attached the infected hard disk in my computer as secondary hard disk.

Take the ownership of windows\system32 folder

Now I renamed credui.dll file as credui_old.dll

Now copy the new credui.dll file in infected computer from working computer system32 folder.

Now remove the old file.



Now attach the infected hard disk in main computer and start the machine.



Hope fully everything would work fine. If you find any issue please let me know by email or comment I will be more than happy to help you



Thanks for being here

Suni

The Relational Model

0 komentar


If you look at any system that was born on and for the
internet, like Ruby on Rails, or the PHP language, you find
an immense wealth of resources on the internet itself, in
endless product web sites, blogs, and forums. But when
you look for the same comprehensive information on products
or ideas that matured before the web you find it is not there.
Relational databases stand out as a product family that matured
before the internet, and so their representation in cyberspace
is very different from the newer stuff.



The Math Stuff



You may have heard relational theorists argue that the
strength of relational databases comes from their solid
mathematical foundations. Perhaps you have wondered,
what does that mean? And why is that good?



To understand this, we have to begin with
>Edsger W. Dijkstra, a pioneer in the area of computer
science with many accomplishments to his name. Dijkstra
believed that the best way to develop a system or program
was to begin with a mathematical description of the system,
and then refine that system into a working program. When
the program completely implemented the math, you were
finished.



There is a really huge advantage to this approach. If you
start out with a mathematical theory of some sort, which
presumably has well known behaviors, then the working program
will have all of those behaviors and, put simply, everybody
will know what to expect of it.



This approach also reduces time wasted on creative efforts
to work out how the program should behave. All those
decisions collapse intot he simple drive to make the program
mimic the math.



A Particular Bit of Math



It so happens that there is a particular body of math
known as Relational Theory, which it seemd to
>E. F. Codd would be a very nice fit for storing
business information. In his landmark 1970 paper
>A Relational Model of Data for Large Shared Data Banks
(pdf)
he sets out to show how these mathematical
things called "relations" have behaviors that would be
ideal for storing business models.



If we take the Dijkstra philosophy seriously, which is to
build systems based on well-known mathematical theories,
and we take Codd's claim that "Relations" match well to
business record-keeping needs, the obvious conclusion is
that we should build some kind of "Relational" datastore,
and so we get the Relational Database systems of today.



So there in a nutshell is why relational theorists are
so certain of the virtues of the relational model, it's
behaviors are well-known, and if you can build something
that matches them, you will have a very predictable
system.



They are Still Talking About It



If you want to know more about the actual mathematics,
check out the "http://groups.google.com/group/comp.databases.theory/topics"
>comp.databases.theory
Usenet group, or check out
Wikipedia's articles on "http://en.wikipedia.org/wiki/Relational_algebra"
>Relational Algebra
and "http://en.wikipedia.org/wiki/Relational_calculus"
>Relational Calculus
.



A Practical Downside



The downside to all of this comes whenever the mathematical
model describes behaviors that are contrary to human goals
or simply irrelevant to them. Examples are not hard to
find.



When the web exploded in popularity, many programmers found
that their greatest data storage needs centered on documents
like web pages rather than collections of atomic values
like a customer's discount code or credit terms. They found
that relational databases were just not that good at storing
documents, which only stands to reason because they were never
intended to. In theory the model could be stretched,
(if the programmer stretched as well), but the programmers
could feel in their bones that the fit was not right, and they
began searching for something new.



Another example is that of calculated values. If you have
shopping cart, you probably have some field "TOTAL" somewhere
that stores the final amount due for the customer. It so
happens that such a thing violates relational theory, and there
are some very bright theorists who will refuse all requests
for assistance in getting that value to work, because you
have violated their theory. This is probably the most shameful
behavior that relational theorists exhibit - a complete
refusal to consider extending the model to better reflect
real world needs.



The Irony: There are No Relational Databases



The irony of it all is that when programmers set out to build
relational systems, they ran into quite a few practical
downsides and a sort of consensus was reached to break the
model and create the SQL-based databases we have today.
In a truly relational system a table would have quite
a few more rules on it than we have in our SQL/TABLE based
systems of today. But these rules must have seemed
impractical or too difficult to implement, and they were
scratched.



There is at least one product out there that claims to
be truly relational, that is "http://en.wikipedia.org/wiki/Dataphor">Dataphor.

The Weird Optional Part



Probably the grandest irony in the so-called relational
database management systems is that any programmer can
completely break the relational model by making bad
table designs. If your tables are not normalized, you
lose much of the benefits of the relational model,
and you are completely free to make lots of
non-normalized and de-normalized tables.



Conclusion



I have to admit I have always found the strength of
relational databases to be their simplicy and power,
and not so much their foundations (even if shaky) in
mathematical theory. A modern database is very good
at storing data in tabular form, and if you know how
to design the tables, you've got a great foundation for
a solid application. Going further, I've always found
relational theorists to be unhelpful in the extreme in
the edge cases where overall application needs are not
fully met by the underlying mathematical model. The
good news is that the products themselves have all of
the power we need, so I left the relational theorists
to their debates years ago.

Suni

Binding Manager Dengan Vb 2008

0 komentar

Apakah pada sudah membaca artikel saya dengan judul Multiple BindingNavigator ?? Jika sudah, pada artikel tersebut di jelaskan bagaimana Binding Data dengan cara Design Time dan sangat mudah sekali. Untuk artikel kali ini penulis akan menjelaskan bagaimana cara Binding Data dengan cara Run Time (Coding).
Penulis menggunakan Northwind database, dengan menggunakan table Employees. Sekarang pada form tambahkan 2 buat text box dan 4 buah button. Susun dan design seperti gambar diatas.
Untuk pertama kali buat deklarasikan objek Dataset dan Binding Manager
Pada Class Form

Dim DataSet1 As New DataSet
Dim bMgr As BindingManagerBase

Lalu double click form, dan ketikkan sintaks dibawah ini :
�� � � ' Set up connection string
�� � � �Dim connString As String = _
�� � � � � � "server = .\sqlexpress;" _
�� � � � � & "integrated security = true;" _
�� � � � � & "database = northwind"

�� � � �Dim sql As String = _
�� � � �"select " _
�� � � �& " * " _
�� � � �& "from " _
�� � � �& "employees"

�� � � �Dim conn As SqlConnection = New SqlConnection(connString)
�� � � �Dim da As SqlDataAdapter = New SqlDataAdapter(sql, conn)
�� � � �da.Fill(DataSet1, "employees")

�� � � �'Bind textbox ke data kolom
�� � � �TextBox1.DataBindings.Add("text", DataSet1, "employees.firstname")
�� � � �TextBox2.DataBindings.Add("text", DataSet1, "employees.lastname")

�� � � �'Membuat Binding Manager
�� � � �bMgr = MyBase.BindingContext(DataSet1, "employees")

Dengan sintaks di atas kita telah melakukan Binding data untuk TextBox1 dengan kolom FirstName dan TextBox2 dengan kolom LastName.
Dan untuk menjalankan Navigator data, double click button Previous/Mundur dan ketik sintaks dibawah :
bMgr.Position -= 1
Button Next/Maju :�bMgr.Position += 1
Button First / Awal :�bMgr.Position = 0
Button Last / Akhir :�bMgr.Position = DataSet1.Tables("employees").Rows.Count - 1

Sangat mudahkan.. Selamat mencoba dan bercoding ria...
Wassalam..
Suni

Show hidden folder not getting enabled

0 komentar

Show hidden folder not getting enabled using registry



Many time people complaint that they are not able to enable the show hidden folder and file option. When they go to tools-> folder options->view->hidden files and folders->show hidden files and folders



When they enable it and click on Apply and OK it never work.



I have a simple solution for that, we need to edit one setting in registry and after that editing enable the hidden folder and files option from above location it will work fine.

Here is complete process for that.

  1. Click on start and then run (windows+r would be fine)
  2. Type regedit and press enter
  3. Go to this location in registry editor (colored in red). Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Advanced\Folder\Hidden\SHOWALL
  4. Now double click on key CheckedValue (right side of the main menu) and it will open a window as bellow for you

  5. In Value data give a number as 2 and click on ok
  6. Now go to windows explorer -> tools-> folder options->view->hidden files and folders->show hidden files and folders and select show hidden files and folder click on apply and OK

Now you will be able to see the hidden files and folder in your computer.



Hope it was easy and useful for you



Thanks for being here

AP

Suni

Thank you very much for your support to me

0 komentar
HI Friends,

First of all thank you very much for the love and support that you people gave me to make this happen.

When I started writing as an active blogger I never assumed that my blog will reach to count of more than 10,000 visits per month, I never thought I would write this thanks note to you for having more than 10,000 visits per month that too in just a short time of 11month.

I started writing on my blog exactly 11month back from today and it�s my 100th post on my technical blog although it�s not technical post but I would like to share my ideas and my al work with you all. I have different blogs under different category but I was not able to write on them regularly I will start writing on them very soon.

I bought a domain that is http://www.techraga.com/ and I will write a networking tutorial book on this site other than regular network stuff. Many times I get email that I should write about my work domain also so I will write about them.

I have another blog on which I have not worked as an active blogger since a long time but I shall start blogging on that again that is http://dreamsatt.blogspot.com/ . This blog is totally entertainment blog and I write about Hollywood and bollywod celebrities on this blog, I generally write a birthday wish a brief introduction and few selected wallpaper of those celebrities.

My one more blog is my personal blog where I write about myself and my thought although I was not able to write on that since a long time but I have started writing on that too again and I will surely keep it moving. My personal blog address is http://dubeyap.blogspot.com/  I would request you to visit on this blog also as it would be definitely helpful for many professional.

I have a website that I created for myself that is http://www.apdubey.co.cc/ it was fun for me to have this website as I could do anything that what I want to do and I will not be answerable to anyone other than me, you can visit here for a mixture of fun and knowledge and for many other things.
Many time people asked me on mails about me also to I would say I am just a fun loving person working as a network admin in a software company since 4 years and you can get more about me on my website.

I have few other blogs also where I don�t work at all but I was supposed to work on them and I will work for them also after a big success of my this blog. I created those blogs on request of my readers but I was not able to work on them and now I convinced myself for work on those blog also about them I will write some other time when I will do a work on them.

Hope it was not very bad and you are not looking a shoe for hurling that to me after this all.


Thanks for being here
AP Dubey
apdubey@gmail.com
Suni

Microsoft Visual studio 2005 express edition offline installation file download.

0 komentar

Microsoft Visual Web Developer 2005 express edition offline download

Microsoft visual c++ 2005 express edition offline download

Microsoft Visual Basic 2005 express edition offline download

Microsoft visual C# 2005 express edition offline download

Microsoft visual J# 2005 express edition offline download

Yesterday I was in need of Microsoft Visual C++ 2005 and when I searched for the same on Microsoft website it took me to webpage of 2008 express edition development tool that I certainly did not want, greatest thing was that the great Microsoft didn�t even post any archive link for its old recently closed products. I had no other option then googling and as it goes for most of the case it didn�t help me in direct manner but after using Google smartly I managed to get all the offline files from Microsoft with help of �Great Google�.

It�s enough to appreciate myself now here is offline download link for all the offline version of visual studio 2005 express edition. In this list there is a complete list of all the visual studio 2005 express edition tools.

You can download the offline installer of following Microsoft visual studio 2005 express edition from given location in two format. You can download the complete offline installer of express edition in img or iso format from given location.

All the bellow files are more them 400MB.

Visual Web Developer 2005 Express Edition

449,848 KB

.IMG File | .ISO File

Visual Basic 2005 Express Edition

445,282 KB

.IMG File | .ISO File

Visual C# 2005 Express Edition

445,282 KB

.IMG File | .ISO File

Visual C++ 2005 Express Edition

474,686 KB

.IMG File | .ISO File

Visual J# 2005 Express Edition

448,702 KB

.IMG File | .ISO File

You can download them as long as it available from Microsoft if you find that these tools are no more available from Microsoft, drop a comment or send me an email I will upload these tools to mediafire or rapidshare.

I hope it was useful for you and it will help you to get your work done on time.

Thanks for being here

www.techraga.com

Suni

Tawk.to