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
~6K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for shers
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
521
Member Avatar for sluck

If i'm correct then you should use "Bind" in the EditItemTemplate, because Eval is only read only.

Member Avatar for Ossehaas
0
174
Member Avatar for ace_almario
Member Avatar for dpreznik

It looks like it's a problem with the ID's of the buttons. Try turn of the ID's of the buttons (ItemTemplates) in the gridview and let ASP.NET assign ID's. Maybee it works. I also see that you use Eval for the EditItemTemplate, this can give problems, if so you sould …

Member Avatar for dpreznik
0
882
Member Avatar for Lagnajeet Sahu

Yes you can call a WCF Service from your Javascript and objects. I think it depends on where you want to use it for.

Member Avatar for Ossehaas
0
74
Member Avatar for sniigg

Why do you think you can't you classes, this is the way to share code among pages, websites or applications. Maybe it's a good idea to put your code in a UserControl, you can also share them across other pages.

Member Avatar for amitshrivas
0
101
Member Avatar for jcb0806

You do 1. [CODE] Select Case ("color") [/CODE] Because the value = "Color" it will never be anything else so it wil never fall in red, white or blue. try this [CODE] Select Case (Request.QueryString("color")) [/CODE] 2. QueryStrings are name-value pairs (name=value), you have (color=red=text) 3. duplicate names 4. only …

Member Avatar for Ossehaas
0
90
Member Avatar for unknowndevil41

It looks like it has a reference to a file that is missing after deployment. Do you have a reference to another file in the project (it looks like it's looking for something in the App_Web folder)? If there is a reference to a file then you have to copy …

Member Avatar for Ossehaas
0
169
Member Avatar for kavithaje

I hope this is what you are looking for. This example gets data from a table row by row. [CODE] string conString = "Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword"; using (SqlConnection con = new SqlConnection(conString)) { string sql = "SELECT * FROM tbl"; SqlCommand cmd = new SqlCommand(sql, con); try { con.Open(); …

Member Avatar for _V_
0
1K
Member Avatar for dotnetvally

This is done by using css. there are threads on daniweb.com, search "css print" up in the searchbox

Member Avatar for Ossehaas
0
57
Member Avatar for Haich

If you can use AJAX you can put your controls in a UpdatePanel and add a timer. Set the interval to a time to refresh the page and rebind the controls. Maybe this will solve your problem.

Member Avatar for Ossehaas
0
57
Member Avatar for TheBrenda

I hope this will help you: [CODE] Dim myMap As New ExeConfigurationFileMap myMap.ExeConfigFilename = "MyConfigFile.exe.config" Dim cs As Configuration = ConfigurationManager.OpenMappedMachineConfiguration(myMap)[/CODE]

Member Avatar for TheBrenda
0
166
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
54
Member Avatar for RobinTheHood

I hope this will help you out: Set SelectionMode to FullRowSelect [CODE] Private Sub myGridview_SelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles myGridview.SelectionChanged Dim gv As DataGridView = CType(sender, DataGridView) If gv.SelectedRows(0).Index > 0 Then Dim row As DataGridViewRow = gv.SelectedRows(0) Dim RecID As Integer = CType(row.Cells(0).Value, Integer) ' …

Member Avatar for jireh
0
145
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
185
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
269
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
56

The End.