No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
38 Posted Topics
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 postback the textbox.text property has the … | |
I hope someone can help me: I have valued pairs, attributes names and values in one hand, and I have an object with attributes. I need to set the values of those attributes. I need something like [code] For each pairName in ListPairs Object.GetAttByName(pairName(name)) = pairName(value) Next [/code] I wonder … | |
Re: Uhmmmm well I don't see anything strange, maybe you can try with only one pair of parameters at a time | |
Hi, I've been working on a report and it has 2 subreports, one of them can outgrow the region destinated for it (on a preprinted paper), and I want to break the subreport on a new page of the main report (with page header and page footer). How can I … | |
Hi, I've been googling about a simple source code for crystal reports for about 2 weeks now, and no luck. So I wonder if anyone have a source code for a simple report (maybe with subreports and external parameters) on ASP.NET (I'm using VS2008 and the CR emmbeded in it … | |
Hi, There's not much to add to the title... after I assign the complex object to the session object, the following response.redirect method stops working and hangs the development server. (I tried without it and it works great) maybe there is some considerations to care about session objects, I don't … | |
Hi, I have this: Public Class bParentClass [...] End Class Public Class bChildClass1 inherits bParentClass [...] End Class So, I do this: [CODE=vb] Dim vChildClass1 as bChildClass1 '<-- Here I create a reference to a child class type vChildClass1 = New bChildClass1 '<-- Here I point to a new object … | |
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 popular versions (not everyone updates, you know), but I never used Opera, and … | |
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 very much. Omar | |
Hi, I've tried to get the geolocation of the clients IP, with this code: [CODE=vb] Dim rssReq As System.Net.WebRequest = _ System.Net.WebRequest.Create("http://freegeoip.appspot.com/xml/" _ & vl_bContadorVisitasBE.vcConVisIP) 'Crear el Proxy Dim px As New System.Net.WebProxy("http://freegeoip.appspot.com/xml/" _ & vl_bContadorVisitasBE.vcConVisIP, True) 'Asignar el Proxy al objeto WebRequest rssReq.Proxy = px 'Establecer el tiempo de … | |
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 want to duplicate codes using the same that I have already. So I'm wondering, if its possible … | |
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 have the globalization set in the web.config on the web project. (VS2008, … | |
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: Interface: [CODE=vb] <ServiceContract()> _ Public Interface IRepositorio <OperationContract(Name:="ListarAlmacen")> _ Function ListarAlmacen() As … | |
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) in the template field and added its event with addhandler... Well my problem is that when I uncomment the … | |
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 trigger a validator (I need this because this is only a small part of a site … | |
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 event (handler added in the RowCreated event of the first gv) of the second … | |
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 the key updated (always will be a single row updated at the time). I know, I passed … | |
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: HtmlTable | ---HtmlTableRow | ---HtmlTableCell | ---HtmlTable I hope someone could help me Thanks Omar | |
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 that it can be done... Omar | |
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 figure the right way to implement it. Please help me here... Omar | |
Greetings folks, I need to load a word document file into a RichTextBox component, It can't be done directly, so, I need first, convert it to a RichText Format File and then load it to the component. Any Ideas? Thanks Omar | |
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 DVD of the SQL Server installer, It won't show my actual installation … | |
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 instance, it fails (it gives me an error: "Named … | |
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 2000) through a cross-linked connection. When I execute it from the Management … | |
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 SP. How can I do that? Please help. P.D.: I have … | |
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 using System.Diagnostics.EventLog.WriteEntry method on my app, then, it insert the entry but seems to be wrong … | |
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, [code]Dim Format As New System.Globalization.CultureInfo("en-US", True) Dim sFecha As Date = System.DateTime.Parse(me.TextBox1.Text.Trim, Format, Globalization.DateTimeStyles.None)[/code] What I need is a way to show in … | |
Re: [QUOTE=C#Novice;584963]Hi All, I m working on a project that has different sub-projects. I would like to include a link to a file that is placed in another folder. For ex. My file whose path is ProjB/FolderB/FileB.asp --I want to write a line of code that will enable me to link … | |
Hi everybody, I want to make an app with command line parameters like: "dir *.jpg", when "dir" is the app and "*.jpg" is the parameter. Can anyone can help me. | |
Re: I cannot believe that you folks forget the mighty 4GL!! # Hello World in Informix 4GL MAIN DISPLAY "Hello World (Informix 4GL)" END MAIN | |
Re: 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 table, the recordset does not know anything about the tables used in your query, it only can … | |
I have this code: [CODE]Dim cb As OleDb.OleDbCommandBuilder Try cb = New OleDb.OleDbCommandBuilder(daDocuments) daDocuments.Update(CType(bdsDocuments.DataSource, DataTable)) MessageBox.Show("The data load has finished...", "DBF Load") Catch ex As Exception MessageBox.Show("1.- " + ex.Message) End Try[/CODE] but, the OleDbCommandBuilder don't create the updatecommand and hence it doesn't work... any ideas? | |
Hi hi! Just that, I want to hide a asp:button when a asp:dataview is empty and show it when it has records... Any Ideas? Omar | |
Hi again, I was wondering, how can I comment an asp tag, in HTML is <!-- -->, on ASP VB Code is ', but an ASP.NET tag like <asp:TextBox1 ></asp:Textbox1> how can I comment it?? I've tried with both HTML and ASP, but no luck. Is there a way to … | |
Hi Friends, I'm having a kind of anoying problem, I have a ObjectDataSource with a Select with parameters, one of them receives its value from a DropDownList and the others from textboxes, this dropdownlist parameter seem to not working, and the textboxes are working fine... The gridview just dont show … | |
Re: I think it would be a string type conversion (ASCII - Unicode thing) I use trim(cstr(strLineValue)) <> "" to make sure the values are evenly analysed. Greetings | |
Hi, i've been with this in my neck a month ago, I need to write and read a image file to an Informix DB, but through a COM+ application (3 tier app). I googled this several times with no luck. So please any help would be apreciated. I have tried … |
The End.