Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~5K People Reached
Favorite Tags
Member Avatar for shers

Hi, I'm working in VB.Net. I have a textbox in which the user enters a number of strings seperated by comma. I store this value in a string array like this [CODE] Dim Src() As String Src = txtVals.Text.Split(",".ToCharArray)[/CODE] I want to search a dynamic string in this array. How …

Member Avatar for markwelbar
0
1K
Member Avatar for Ossehaas

Ok here is the problem, I got a 2 column page and I need the background color of a fo:block-container to flow like this: 1. Left column: left side page to center page 2. Right column: center page to right side page 3. Top: where block-container starts 3. Bottom: bottom …

Member Avatar for Ossehaas
0
512
Member Avatar for sluck

[CODE] <asp:TemplateField HeaderText="Grabbelpas"> <ItemTemplate> <asp:CheckBox id="lblGrabbelpas" Enabled="false" runat="server" Checked='<%# DataBinder.Eval(Container, "DataItem.Grabbelpas") %>' ></asp:CheckBox> </ItemTemplate> <EditItemTemplate> <asp:CheckBox id="txtEditGrabbelpas" runat="server" Checked='<%# DataBinder.Eval(Container, "DataItem.Grabbelpas") %>' /> </EditItemTemplate> </asp:TemplateField>[/CODE] [CODE]CheckBox txtGrabbelpas = (CheckBox)(myDetailsView.FindControl("txtEditGrabbelpas")); strSQL = "UPDATE leden SET LidID = "Grabbelpas = '" + txtGrabbelpas.Checked + "' " + " WHERE LidID = '" …

Member Avatar for Ossehaas
0
170
Member Avatar for ace_almario
Member Avatar for dpreznik

Dear friends, I have a tab container with many tab panels in it. In each tab panel, I have a GridView which has an Edit button in each row. When Edit button is pressed, it turns into an Update button, and all fields become editable. When the Update button is …

Member Avatar for dpreznik
0
864
Member Avatar for Lagnajeet Sahu

When to use WCF and when to use Web Service? Would it be possible to call a WCF service from Javascript ??

Member Avatar for Ossehaas
0
72
Member Avatar for sniigg

I have a piece of code which is used by several aspx.cs pages and I want to put that code in a separate page so that all these pages access that separate page. I dont think i can use classes for this....

Member Avatar for amitshrivas
0
97
Member Avatar for jcb0806

I just did a simple practice project to learn more about querystrings... I have three check boxes and a button. Checkbox1 is titled red, Checkbox2...white, Checkbox 3...blue. When I click the button 1, I just want the page to redirect and pass the values of the checked boxes to the …

Member Avatar for Ossehaas
0
86
Member Avatar for unknowndevil41

Hi friends, i have made an website and running it through iis after publishing. But is showing an error: [COLOR="Red"]Server Error in '/' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and …

Member Avatar for Ossehaas
0
166
Member Avatar for kavithaje

i need help to create website for online test using asp.net with c# coding.. it shld consists of question with multiple answer choices

Member Avatar for _V_
0
1K
Member Avatar for dotnetvally

how to give print in asp.net page for a specific area only that is in a webform only certain div area should be printed in a webform

Member Avatar for Ossehaas
0
56
Member Avatar for Haich

I have set up a datagrid on my vb.net form for a MS access database. I have a listbox where i want to show only 1 column of data from the datagrid, which should be updated when the contents of the database changes. Please help ASAP. Dataset = Minicab_DatabaseDataSet Datagrid …

Member Avatar for Ossehaas
0
55
Member Avatar for TheBrenda

I am using the ConfigurationManager in a Class Library and I want to read the config file for the Class Library project. The ConfigurationManager wants to read the config file for the applicaiton. How do I read the Class Library config file? <html> Dim strCBFile = ConfigurationManager.AppSettings("CBFile") </html>

Member Avatar for TheBrenda
0
163
Member Avatar for Ossehaas

Any1 any idea why i can import the AdobeReader COM Component in VB 2005 Express Toolbox (Tools > Choose Toolbox Items) and not in VS 2008? In VS2008 it shows only a few COM Components.

0
52
Member Avatar for RobinTheHood

Hi all, I've only just stared using VS2008 VB so please excuse me if this seems a very basic question. (I've amended my example to the Northwind Database to avoid any confusion) WHAT I HAVE I have a dataset called KeyData made up of two tables Customers and Orders. I …

Member Avatar for jireh
0
142
Member Avatar for Ossehaas

Hello every1, I'm using CAS permissions in my app, everything is working except when I want to load an assembly. All CAS Settings now are: [CODE]<Assembly: FileIOPermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: UIPermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: FileDialogPermission(SecurityAction.RequestRefuse, Unrestricted:=True)> <Assembly: FileDialogPermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: IsolatedStorageFilePermission(SecurityAction.RequestOptional, Unrestricted:=True)> <Assembly: IsolatedStorageFilePermission(SecurityAction.RequestMinimum, Unrestricted:=True)> <Assembly: …

Member Avatar for Ossehaas
0
180
Member Avatar for Ossehaas

Hello all, I'm having a problem with sending a serialized object over a NetworkStream. I'm using the BinaryFormatter and the object is serialized and deserialized fine writing to a file. If I use a streamwriter to send text it works fine after the [B]Flush()[/B] [CODE] nStream = _tcpClient.GetStream() Dim sw …

Member Avatar for Ossehaas
0
265
Member Avatar for Ossehaas

Hi, I have a question. I'm studying MCTS Application Development Foundation .NET 2.0 VB and I have a Server - Client Messenger app to exchange text. One NetworkStream is used both for reading and writing the strings. Now I want to exchange different types of objects to and from the …

0
54