Search Results

Showing results 1 to 40 of 55
Search took 0.01 seconds.
Search: Posts Made By: culebrin
Forum: ASP.NET 24 Days Ago
Replies: 2
Views: 417
Posted By culebrin
Thank you Ramesh, that's sort of what I needed...
Forum: ASP.NET 25 Days Ago
Replies: 2
Views: 417
Posted By culebrin
Hi,

I'm developing an AJAX website, and I want to make it compatible with most browsers and its many versions in the market.

I've been using IE, FF and Chrome, for many years, and I know his...
Forum: Visual Basic 4 / 5 / 6 Oct 15th, 2009
Replies: 1
Views: 461
Posted By culebrin
Hi,

Is there any chance to get a visual basic 6 compiler for free? I mean, I have a vb6 project (made with the visual studio 6 IDE), but I have no IDE (visual studio 6 or something).

Thank you...
Forum: ASP.NET Oct 13th, 2009
Replies: 0
Views: 311
Posted By culebrin
Hi, I've tried to get the geolocation of the clients IP, with this code:


Dim rssReq As System.Net.WebRequest = _
System.Net.WebRequest.Create("http://freegeoip.appspot.com/xml/" _
&...
Forum: ASP.NET Sep 1st, 2009
Replies: 0
Views: 146
Posted By culebrin
Hi,

I have a table maintenance page, and it has several details rows (and its respective maintenance page for that detail). Then I want to edit the detail using the modalpopupextender. I don't...
Forum: ASP.NET Aug 19th, 2009
Replies: 1
Views: 313
Posted By culebrin
Hi,

I have 2 projects, the business entity, there I have all the classes mapped from the database and the web project where I fill those business entity classes. Then, I need to store in a DB. I...
Forum: ASP.NET Aug 19th, 2009
Replies: 4
Views: 773
Posted By culebrin
Well, Someone might wanna know this...

I solved the problem putting the close method at the end of the call.



I hope this helps someone...
Forum: ASP.NET Aug 12th, 2009
Replies: 4
Views: 773
Posted By culebrin
Another thing. The method time span is long enough (the default timeout value is 60 secs) to execute it (it's just a query of one table), and I have no idea why, when executes the first time, it...
Forum: ASP.NET Aug 12th, 2009
Replies: 4
Views: 773
Posted By culebrin
Hi Ramesh,

Thank you very much for the answer, I've been looking how to do it in the web.config (i have a website client, and I want to do it in the web.config), but have no luck...

This is my...
Forum: ASP.NET Aug 10th, 2009
Replies: 4
Views: 773
Posted By culebrin
Hi,

I a real newbie on WCF, and I want to implement a service that reads from a DB some data and returns generic lists of custom objects to the client.

So I implement the service like this:...
Forum: ASP.NET Aug 10th, 2009
Replies: 3
Views: 1,155
Posted By culebrin
I used the "Control.ClientID" to reference my control, but no luck...

and I can't use a client side control, because I need to access it in the server also...

I gave up, I know there's a...
Forum: ASP.NET Aug 6th, 2009
Replies: 3
Views: 1,155
Posted By culebrin
Hi,

I have a website on NET 2.0, there I have a textbox and after I change the text on it with a js function, try to save on the DB (I have to click on a imagebutton to save it), but on the...
Forum: ASP.NET Jul 13th, 2009
Replies: 3
Views: 910
Posted By culebrin
Hi,

Using ajax, I manage to solve this, registering the imagebutton for postback in the scriptmanager... and that's it!
Forum: ASP.NET Jul 10th, 2009
Replies: 1
Views: 387
Posted By culebrin
Hi again,

I found my own answer... I used CustomValidator and set the OnServerValidate property to a method on the codebehind to go through the gridview comparing the SelectedValue of the current...
Forum: ASP.NET Jul 10th, 2009
Replies: 1
Views: 387
Posted By culebrin
Hi,

I have a DropDownList (filled in the rowCreated method) in a TemplateColumn in a GridViewRow.
A user can add a row to select another value in the new dropdownlist created.

I need to...
Forum: ASP.NET Jul 8th, 2009
Replies: 3
Views: 910
Posted By culebrin
I tried it, and it reaches the event, as you said, but the problem now is that the HasFile property of the FileUpload control is false when after I select the file... And I don't know why...

I...
Forum: ASP.NET Jul 6th, 2009
Replies: 3
Views: 910
Posted By culebrin
Hi,

I have a gridview that has a fileupload (fupRespuesta) control in a itemtemplate field, I need to enable automatic upload after file is selected.

Then I added a imageButton (imgRespuesta)...
Forum: ASP.NET Jul 6th, 2009
Replies: 3
Views: 1,259
Posted By culebrin
Thanks... but I tried it, and It didn't worked. I just have to give up that idea, coz I'm on a schedule...

Thank you very much...
Forum: ASP.NET Jun 29th, 2009
Replies: 0
Views: 398
Posted By culebrin
Hi,

I have a dataset build at design time (vs 2008) with several tables of my DB (MSSQL 2005).

I have a DataTable with its tableadapter... I need that the TableAdapter.Update function returns...
Forum: ASP.NET Jun 26th, 2009
Replies: 8
Views: 1,003
Posted By culebrin
Thanks, and I'll try to be more accurate on my explaining.

So, as far I can see, the trick is to construct the object before I add it, I don't know how could I miss it...

Thanks again!...
Forum: ASP.NET Jun 26th, 2009
Replies: 8
Views: 1,003
Posted By culebrin
Yes... server side... I've been doing in a simpler maner with


For Each obj As bNoticiasBE In oListaNoticiasBE

tdvcNotTitular = New System.Web.UI.HtmlControls.HtmlTableCell
...
Forum: ASP.NET Jun 26th, 2009
Replies: 3
Views: 1,259
Posted By culebrin
Hi,

I have a Button inside of a GridView, inside of another GridView.

The higher gv is filled with a dataset, and in the RowCreated event I fill the second gv, and finally, in the RowCreated...
Forum: ASP.NET Jun 26th, 2009
Replies: 8
Views: 1,003
Posted By culebrin
Well... i forgot to say I want to do it, in the codebehind... not in the aspx file...
Forum: ASP.NET Jun 23rd, 2009
Replies: 8
Views: 1,003
Posted By culebrin
Hello folks,

I need to create a html table dynamically, so I used HtmlTable and HtmlTableCell ... but I need to put inside a HtmlTableCell another HtmlTable object, so the structure will be:
...
Forum: VB.NET Jun 13th, 2009
Replies: 0
Views: 309
Posted By culebrin
I've designed a class diagram for my business entity library, in visual studio 2005, now I was wondering if theres any way to export it to a SQL Script to generate the corresponding tables ... I hope...
Forum: VB.NET Apr 25th, 2009
Replies: 1
Views: 267
Posted By culebrin
Hi,

I need to implement a class that allow me insert as many childs as needed, like when you have a DataTable Class and add as many DataRows as needed with DataTable.Rows.Add(DataRow).

I can't...
Forum: MS SQL Jan 16th, 2009
Replies: 2
Views: 1,812
Posted By culebrin
Well,

I'm sorry ... I meant that, the other apps on the suite will cause some damage if I proceed with the installation...

Well... till I try we'll never know...
Forum: MS SQL Jan 16th, 2009
Replies: 2
Views: 1,698
Posted By culebrin
Well finally I have to reinstall both instances, I don't know what happened but that solve my problem...
Forum: PHP Jan 16th, 2009
Replies: 2
Views: 877
Posted By culebrin
Yes, that is what I needed... Thanks!
Forum: MS SQL Jan 16th, 2009
Replies: 2
Views: 2,826
Posted By culebrin
Forum: VB.NET Jan 16th, 2009
Replies: 3
Views: 1,268
Posted By culebrin
Well,

I did that, the problem was that I have a development machine that runs on XP SP2, and my production server runs on 2K3, works ok on windows server 2K3, but on my XP have that problem... I...
Forum: VB.NET Jan 5th, 2009
Replies: 3
Views: 1,268
Posted By culebrin
I have to write log entries through my app (ASP.NET -VB-)

In my understanding that's what I do: created a DLL Message library, then I've created certain registry entries, and insert the log entry...
Forum: MS SQL Oct 13th, 2008
Replies: 2
Views: 1,812
Posted By culebrin
Hi,

I don't know why the server I recently get to manage, has the SQL Server 2005 installed but with the Management Studio Express!... I need to upgrade it with the Dev version, but when I put the...
Forum: MS SQL Oct 7th, 2008
Replies: 2
Views: 1,698
Posted By culebrin
Hi,

I have 2 instances of SQL Server running on one machine (One 2K -default- and one 2K5), I have no problem connecting from a PC on LAN to the 2K5 instance, but when I try to connect to the 2K...
Forum: PHP Jul 31st, 2008
Replies: 2
Views: 877
Posted By culebrin
I have a SP (sp_test_procedure) created from a SQL Server Project in my SQL Server 2005 database, inside this SP I have a call to another SP which inside calls to a SP in another Database Server (SQL...
Forum: ASP.NET Apr 16th, 2008
Replies: 1
Views: 1,138
Posted By culebrin
Anyone?, Plzzzz, this is driving me crazy!!

!!
Forum: ASP.NET Apr 15th, 2008
Replies: 2
Views: 1,355
Posted By culebrin
Hi,

I guess you have two options, make an Absolute Path or a Relative Path

In the absolute path, you have to put the entire URL on the link, like, http://domainname/ProjB/FolderB/FileB.asp
...
Forum: ASP.NET Apr 15th, 2008
Replies: 1
Views: 1,138
Posted By culebrin
Hi all,

I need a more elegant way to do the convertion between different cultures

First I parse the field into the default culture (en-US) like this,

Dim Format As New...
Forum: MS SQL Mar 26th, 2008
Replies: 2
Views: 2,826
Posted By culebrin
Hi all,

I have a Stored Procedure without an output parameter but it returns one row always, this SP is called by another SP, so I need to store some of those columns in a variables of the first...
Forum: Visual Basic 4 / 5 / 6 Oct 15th, 2007
Replies: 8
Views: 2,038
Posted By culebrin
I think you should give a try the yello's suggestion, and to call certain column use: adobau("columnname"), columnname could be any of the columns used in the query, not exclusively of a certain...
Showing results 1 to 40 of 55

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC