<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5505826629420260462</id><updated>2011-06-20T09:49:27.651-07:00</updated><title type='text'>jéter ornelas</title><subtitle type='html'>Sou Desenvolvedor VB6, .NET(C# e VB) e Free lancer. Aqui eu disponibilizo diversos artigos relacionados a tecnolgia e alguns de meus trabalhos.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5505826629420260462.post-5959798763035077580</id><published>2009-01-14T06:18:00.000-08:00</published><updated>2009-01-14T06:32:08.528-08:00</updated><title type='text'>VB6 - Usando o componente Microsoft DataGrid Control "Sem complicação"</title><content type='html'>&lt;style&gt;
 span{
    display:block;
    float:none;
    margin-bottom:10px;
    

 }
&lt;/style&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' === Usando o componente Microsoft DataGrid Control === '&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' --- Introdução --- '&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;'Aqui é demonstrado como manipular um DataGrid&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;'através do recordset sem a nececidade de código&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;'complexo para monstrar dados em um grid e permitir&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;'a adição, edição e exclusão.&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' ------------------ '&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' --- Antes de começar --- '&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' 1 - Vá no menu Project / Components...&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' 2 - Marque o compomente Microsoft DataGrid Control&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' 3 - Clique em Aplicar e depois fecha a janela&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' 4 - Aparece um novo componente ToolBox&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' 5 - Insira o DataGrid no Form e&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' insera o código abaixo e não se esqueça&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' de passar os valores para as variaveis:&lt;/span&gt;
&lt;span style="color: rgb(0, 102, 0);"&gt;' ConnctionString, SqlString&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' ------------------------ '&lt;/span&gt;

&lt;span style="color: rgb(0, 102, 0);"&gt;' ====================================================== '&lt;/span&gt;


Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim ConnctionString, SqlString As String

ConnctionString = "Configure a conexão com o provedor de dados"
SqlString = "Passe a Instrução SQL a ser e executada"

&lt;span style="color: rgb(0, 102, 0);"&gt;' Conexão&lt;/span&gt;
With cn
.ConnectionString = ConnctionString
.CursorLocation = adUseClient
.Open
End With

&lt;span style="color: rgb(0, 102, 0);"&gt;' Recordset&lt;/span&gt;
With rs
.ActiveConnection = cn
.CursorLocation = adUseClient
.CursorType = adOpenDynamic
.LockType = adLockBatchOptimistic
.Source = SqlString
.Open
End With

With DataGrid1

&lt;span style="color: rgb(0, 102, 0);"&gt;' Configura as permissões do DataGrid&lt;/span&gt;
.AllowAddNew = True
.AllowUpdate = True
.AllowDelete = True

&lt;span style="color: rgb(0, 102, 0);"&gt;' Vincula o Recordset ao DataGrid&lt;/span&gt;
Set .DataSource = rs

End With&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5505826629420260462-5959798763035077580?l=jeterornelas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/5959798763035077580/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5505826629420260462&amp;postID=5959798763035077580' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/5959798763035077580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/5959798763035077580'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/2009/01/vb6-usando-o-componente-microsoft.html' title='VB6 - Usando o componente Microsoft DataGrid Control &quot;Sem complicação&quot;'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5505826629420260462.post-8280602065421111046</id><published>2007-06-04T12:24:00.000-07:00</published><updated>2007-06-04T13:19:01.415-07:00</updated><title type='text'>Melhor layout no trabalho final do curso de design web com Bruno Ávila</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cZ0ErpWO5zU/RmRp24uzaMI/AAAAAAAAAAc/sv4v9-KpAKs/s1600-h/final-901615-jeterornelas.jpg"&gt;&lt;img style="cursor: pointer;" src="http://bp0.blogger.com/_cZ0ErpWO5zU/RmRp24uzaMI/AAAAAAAAAAc/sv4v9-KpAKs/s320/final-901615-jeterornelas.jpg" alt="" id="BLOGGER_PHOTO_ID_5072295471988566210" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;
&lt;/div&gt;Depois de muito empenho e dedicação tentei aplicar tudo o que aprendi no decorrer do curso na crição deste layout. Alegria nas curvas, elegancia e leveza nas cores um estilo clean e valorização do produto, aqui em questão, a pousada! e sem esquecer do A.I.D.A. . Foi o que me deu o título de melhor de layout no trabalho final do curso de design web com &lt;a href="http://cursos.brunoavila.com.br/" target="_blank"&gt;Bruno Ávila&lt;/a&gt; em meio de 42 pessoas! :) e to rindo atoa rsrsrsrssrs&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5505826629420260462-8280602065421111046?l=jeterornelas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/8280602065421111046/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5505826629420260462&amp;postID=8280602065421111046' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/8280602065421111046'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/8280602065421111046'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/2007/06/destaque-em-curso-de-design-web.html' title='Melhor layout no trabalho final do curso de design web com Bruno Ávila'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_cZ0ErpWO5zU/RmRp24uzaMI/AAAAAAAAAAc/sv4v9-KpAKs/s72-c/final-901615-jeterornelas.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5505826629420260462.post-2761921283361734733</id><published>2007-06-04T12:19:00.000-07:00</published><updated>2007-06-06T14:14:49.777-07:00</updated><title type='text'>Technology Design</title><content type='html'>&lt;div style="text-align: center;"&gt;Este é o design do layout que havia prometido postar aqui!
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cZ0ErpWO5zU/RmRmNIuzaKI/AAAAAAAAAAM/rbIOS_uTdno/s1600-h/technology_site.jpg" rel="lightbox"&gt;&lt;img style="cursor: pointer;" src="http://bp1.blogger.com/_cZ0ErpWO5zU/RmRmNIuzaKI/AAAAAAAAAAM/rbIOS_uTdno/s320/technology_site.jpg" alt="" id="BLOGGER_PHOTO_ID_5072291456194144418" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5505826629420260462-2761921283361734733?l=jeterornelas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/2761921283361734733/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5505826629420260462&amp;postID=2761921283361734733' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/2761921283361734733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/2761921283361734733'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/2007/06/technology-design.html' title='Technology Design'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_cZ0ErpWO5zU/RmRmNIuzaKI/AAAAAAAAAAM/rbIOS_uTdno/s72-c/technology_site.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5505826629420260462.post-2047508876260664650</id><published>2007-06-03T21:43:00.000-07:00</published><updated>2007-06-03T21:52:36.190-07:00</updated><title type='text'>Um novo trabalho!</title><content type='html'>Meu novo trabalho é a criação de um layout para o site da Technology Informática. Uma empresa séria que presta serviços no ramo da informática como cursos, assistencia técnica, consultoria para lan-house's e agora criação de sites pois estou firmando uma parceria com eles para desenvolver alguns projetos web como free lancer. Em breve postarei o layout da página index aqui. Aguardem!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5505826629420260462-2047508876260664650?l=jeterornelas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/2047508876260664650/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5505826629420260462&amp;postID=2047508876260664650' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/2047508876260664650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/2047508876260664650'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/2007/06/um-novo-trabalho.html' title='Um novo trabalho!'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5505826629420260462.post-8140772766427773646</id><published>2007-06-03T21:04:00.000-07:00</published><updated>2007-06-03T21:39:59.808-07:00</updated><title type='text'>Portal de games online</title><content type='html'>Este link é do meu último trabalho antes de fazer o curso de design web com &lt;a href="http://cursos.brunoavila.com.br" target="_blank"&gt;Bruno Ávila&lt;/a&gt;

&lt;a href="http://www.jogoligado.com" target="_blank"&gt;http://www.jogoligado.com&lt;/a&gt;

Tecnologias utilizadas:

- ASP
- CSS
- JavaScript

Banco de dados: Access 2000

daqui a alguns dias ele passará por uma reformulação com um desgin mas limpo, elegante, mais leve pra carregar e divertido pois é um site de entretenimento.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5505826629420260462-8140772766427773646?l=jeterornelas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeterornelas.blogspot.com/feeds/8140772766427773646/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5505826629420260462&amp;postID=8140772766427773646' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/8140772766427773646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5505826629420260462/posts/default/8140772766427773646'/><link rel='alternate' type='text/html' href='http://jeterornelas.blogspot.com/2007/06/portal-de-games-online.html' title='Portal de games online'/><author><name>Jéter Ornelas Oliveira Alves</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
