Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~9K People Reached
Favorite Tags
Member Avatar for Link_1

i am using vb asp.net **error**: there is already an open DataReader associated with this Command which must be closed first. working on this issue for couple weeks now and i have no idea how to fix this. any help will be helpful i am using 2 reader on page …

Member Avatar for Santanu.Das
0
2K
Member Avatar for Link_1

I makeing a website using VB .net inside visual studio. I have a database where I am storeing names. Than I am displaying these names inside a table. here is a ex: ---------------- | dave | bob | | john | bill | ---------------- I was to add a button …

Member Avatar for RobinR
1
391
Member Avatar for Link_1

Error: The Remote Server Returned An Error 400 Bad Request I am using asp vb.net and instagram api also I am using Newtonsoft.Json -Version 10.0.3 I following below link as a tutorial but issue is I am converting code from c# to VB and I am getting an error: https://code.msdn.microsoft.com/Haroon-Said-e1d8d388 …

0
174
Member Avatar for Link_1

I am using VB **Problem: **when i click on sort col and click on refresh button, than i get popup browers message "To display the webpage again, the web brower need to resend the infomation you've previously submitted." **Recreate this problem**: click on sorting col of gridview -> refresh page …

Member Avatar for Link_1
0
295
Member Avatar for Link_1

I need to write a batch script. I have a folder on my desktop name "folder". inside it has many sub folders. there is no way of telling how much sub folder there are. Insidde some of sub folder there is a file. folder - sub folder 1 - sub …

Member Avatar for Reverend Jim
0
394
Member Avatar for Link_1

I am using visual basic, javascript, and html. I am trying to use google hierarchy chart api. I works fine on localhost but when I try to move the same code to the server than I get the following error: Error: Object doesn't support this action <%@ Page Language="VB" AutoEventWireup="false" …

Member Avatar for Link_1
0
3K
Member Avatar for Link_1

I have a delete button by createing <asp:ImageButton>. first row user cant delete the item so I dont want a delete button on first row? how can i do this? <asp:DataList ID="DataList1" runat="server" DataKeyField="ID" OnDeleteCommand="DeleteCommand" RepeatColumns="2" RepeatLayout="Table" RepeatDirection="Horizontal"> <ItemTemplate> <asp:ImageButton runat="server" ID="deleteIB" CommandName="Delete" ImageUrl="x-icon.png" /> <%# DataBinder.Eval(Container.DataItem, "PRINT") %> </ItemTemplate> …

Member Avatar for rproffitt
0
537
Member Avatar for Link_1

Please see the attached image. I want to recreate the same layout using bootstrap. How can this be possiable? I can easily create the layout using bootstrap but i have no idea how to create the lines connected to the section. any ideas? ![Untitled.png](/attachments/large/4/e23625300b1e53e3317c9cf8fd68617e.png "align-center")

Member Avatar for diafol
0
231
Member Avatar for Link_1

getting conversion error I am creating a website using a VB Error: if I print getID1 Conversion from string to type 'Integer' is not valid. Error: if I print getID2 NullReferenceException was unhandled by user code. Object reference not set to an instance of an object. ** # .aspx file …

Member Avatar for wazztech
0
330
Member Avatar for Link_1

I am making a website using vb .net I have a datalist which has a datatable and delete button. the output llooks some thing like this below. 'X' is the delete button. --------------------- | X name1 | X name3 | | X name2 | X name4 | --------------------- When user …

0
206
Member Avatar for Link_1

I have a DataList and I have added a datatable in back end. How can I add css to this table? <asp:DataList ID="DataList1" runat="server" RepeatColumns = "3"> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, "StringValue") %> </ItemTemplate> </asp:DataList> Function CreateDataSource() As ICollection 'create a DataTable Dim dt As DataTable = New DataTable dt.Columns.Add(New DataColumn("StringValue", …

Member Avatar for pritaeas
0
196
Member Avatar for Link_1

How to create a datalist table layout in vb? I am using vb .net I have a following data: DataBase: databaseName Table : tableName -------------------- | ID | randomNames | -------------------- | 1 | name1 | | 2 | name2 | | 3 | name3 | | 4 | name4 …

Member Avatar for rproffitt
0
732
Member Avatar for Link_1

How to create a datalist table layout in vb? I am using vb .net I have a following data: DataBase: databaseName Table : tableName -------------------- | ID | randomNames | -------------------- | 1 | name1 | | 2 | name2 | | 3 | name3 | | 4 | name4 …

0
372
Member Avatar for Link_1

![Untitled.png](/attachments/large/4/9ac3fb0f01e4139b31b0d2937bdb0d02.png "align-center") Plesae take a look at the image attached. I have created a maven project by the following steps: 1. open eclipse EE 2. file > new > pther > maven project 3. click on 'create a simple project' checkbox 4. click on 'use defualt workspace location' checkbox > …

0
165
Member Avatar for Link_1

![as1.png](/attachments/small/4/e567c7cd76bf9f6460345131854df142.png "align-left") Please take a look at the attached image first. I would like to recreate this. I am using VB and bootstrap. Code: <div id="body_wrapper"> <div id="theCarousel" class="carousel slide" data-ride="carousel"> <!-- Text --> <div class="carousel-inner"> <div class="item active"> <div class="slide1"></div> <div class="carousel-caption"> <h1>my picture 1</h1> </div> </div> </div> <div …

0
196
Member Avatar for Link_1

How to break up the string into smaller strings. I am using VB I have the following string which I want to break it up on <br/> Dim s As String "cat dog <br/> red green <br/> car box <br/> " Than I have used a split method Dim s1Temp() …

Member Avatar for Mr.M
0
237
Member Avatar for Link_1

I am using VB. How to select mult iteams in listbox using backend code? I have a listbox where user can select muti items. <asp:ListBox ID="lb" SelectionMode="multiple" runat="server" DataValueField="dv"> <asp:ListItem>red r</asp:ListItem> <asp:ListItem>blue b</asp:ListItem> <asp:ListItem>green g</asp:ListItem> </asp:ListBox> How can I set so the value of "blue b" and "green g" is …

0
172
Member Avatar for Link_1

I am using VB User can select the date by the following code. and date is display in textbox. <asp:TextBox ID="dateTB" runat="server" /> <asp:ImageButton ID="ib" ImageUrl="/calendar.png" ImageAlign="Bottom" runat="server" /> <asp:CalendarExtender ID="Cal1" PopupButtonID="ib" runat="server" TargetControlID="dateTB" Format="MM/dd/yyyy"> </asp:CalendarExtender> after that I am storeing that data in SQL Server database. Problem: when user …

0
153