31 Unanswered Topics

Remove Filter
Member Avatar for vuyiswamb

Good Day All i have a ListView that is defined in a Xamarin Form. i want this ListView to be updated with the Data from the DB every 5 seconds. In a Non Mobile environment , we have a Windows Service , which is a long running Service. but now …

0
703
Member Avatar for vuyiswamb

Good Day All I have a Kinect Application , i am having trouble with navigation , so i dont like the creation of object of windows everytime i nagivate from one to another page. so i converted all other windows to WPF pages and created only one window wich will …

0
76
Member Avatar for vuyiswamb

I have a Counter on a textbox done in Javascript like twitter that counts the text entered. Now It works fine. The Textboxes get field with data and after that i want to calculate the renmaining Text. i have a code for that after i bind the textbox. So i …

0
79
Member Avatar for vuyiswamb

Good Day All My Question goes as follows. I have a DataLayer in a Form of a WCF service and it is being consumed by a Business Layer that is also in a Form of a WCF Service and it is being consumed by a Silverlight Application. Now i have …

0
71
Member Avatar for vuyiswamb

Good Morining All i have an asp.net hosted in IIS. that uses the Com library "Microsoft Word 14.0 Object Library". I am using this to convert the word Document to PDF, on my machine it works. I have Office 2010 on my machine and on the server we have installed …

0
83
Member Avatar for vuyiswamb

Good Day All i am having a strange error here. I am using Silverlight and i am accessing an Asp.net page inside a RadHtmlContainer. i am doing an Insert that will insert only two records and i am calling a Service that i tested independently with a wcftest client and …

0
66
Member Avatar for vuyiswamb

Good Dal All i have this aspx page [CODE]<%@ Page Language="C#" Async="true" Trace="true" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form runat="server" method="post" action="https://www.vcs.co.za/vvonline/ccform.asp" > <asp:HiddenField ID="p1" Value="4635" runat="server" /> <asp:HiddenField ID="p2" Value="2" runat="server" /> <asp:HiddenField ID="p3" Value="Some …

0
53
Member Avatar for vuyiswamb

I see a lot of people have been asking this question, some was because of the if postback check , but mine is different. i am using AjaxModalExtender to show my popup on the server side. this is my markup [code] <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestPage.aspx.cs" Inherits="PopTester.TestPage" %> <%@ Register …

0
98
Member Avatar for vuyiswamb

Good Day All I have a web Method defined like this [CODE] [System.Web.Services.WebMethod] public static bool CheckSessionExpiration() { System.Web.HttpContext.Current.Session["CurrentLoginUser"] = null; //This is for Testing Purpose if (UserSecurity.GetLoggedInUser() == null) { return false; } else { return true; } }[/CODE] and in Jquery i have a function that calls this …

0
70
Member Avatar for vuyiswamb

Good Day All I have 20 Textboxes and when there are duplicates in those textboxes , i store them in a List<string> and on fly i build a CheckBoxList and display that as a modal and in that i have a close button to allow the user to correct the …

0
67
Member Avatar for vuyiswamb

Good Day All i have Successfully binded the Telerik Schedular from Objects and its looking Good. Now i have to Bind the same results but in hierachial form. Please note that i am using Telerik Grid and the implementation is the same as asp.net Gridview. i need someone to Guide …

0
50
Member Avatar for vuyiswamb

Good Day All I have a Method that i have defined that i will access in JavaScript(Page Method) and its defined like this [CODE] [WebMethod, System.Web.Script.Services.ScriptMethod] public static void Getadata(String StrSearch) { View obj = new View(); obj.Bind_SearchBox(StrSearch); // return Scriptt; }[/CODE] And the Bind_SearchBox() method is a non static …

0
44
Member Avatar for vuyiswamb

Good Day All i have a Function e.g [CODE] public String Getdata(String mystr) { //Do what ever //return a String }[/CODE] and i want to call this function and pass data in Javascript like this [CODE]function KeyPress() { var TExtbox1 = document.getElementById('Text1'); if (TExtbox1.value.length == 2) { //call the function …

0
84
Member Avatar for vuyiswamb

Good Day All. Am binding the treeview from a Database and it gets populated and am sorting it after this way [CODE]SortTree(CurriculumTreeView);[/CODE] [CODE]private void SortTree(TreeView tv) { if (tv.Nodes != null) { for (int i = 0; i < tv.Nodes.Count; i++) { TreeNode node = tv.Nodes[i]; SortNode(node); } } }[/CODE] …

0
56
Member Avatar for vuyiswamb

Good Day I have posted this question before , i cant find it to continue from it. Let me start from Scratch because i did not find a Solution to this problem. in my page am using a Treeview Control show like this [URL="http://www.vuyiswamaseko.com/public/Wrong_Display.JPG"]http://www.vuyiswamaseko.com/public/Wrong_Display.JPG[/URL] and am loading data in SQL …

0
53
Member Avatar for vuyiswamb

Good Day all i have created a Global Variable as depicted in the following Pic [URL="http://www.tiyaneproperties.co.za/SSIS/pic1.JPG"]http://www.tiyaneproperties.co.za/SSIS/pic1.JPG[/URL] The Following Screen-shot shows how i created my Variable and its Properties [URL="http://www.tiyaneproperties.co.za/SSIS/pic2.JPG"]http://www.tiyaneproperties.co.za/SSIS/pic2.JPG [/URL] and the Following Screen-shot shows the Script Editor Properties [URL="http://www.tiyaneproperties.co.za/SSIS/pic3.JPG"] http://www.tiyaneproperties.co.za/SSIS/pic3.JPG[/URL] and the Last pic is the code that write …

0
92
Member Avatar for vuyiswamb

Good Day All I have a Package created and hosted in a Machine(Theresa) that has SQL 2008 and i have my Development Machine(Vuyiswa) that has IIS and am Debugging from the my machine. i have a ASP.NET 2.0 App and am executing a Package that in another machine. The First …

0
97
Member Avatar for vuyiswamb

Good Day all I have a Usercontrol that has a Gridview and its hosted on my aspx page and the aspx page is defined like this [CODE]<%@ Page Language="C#" MasterPageFile="~/SubjectMasterPage.master" AutoEventWireup="true" CodeFile="SubjectStruct.aspx.cs" Inherits="SubjectStruct" Title="o! WebEditor : Subject Structure" %> <%@ Register Src="SubjectNote.ascx" TagName="SubjectNote" TagPrefix="uc4" %> <%@ Register Src="SubjectDetails.ascx" TagName="SubjectDetails" TagPrefix="uc2" …

0
52
Member Avatar for vuyiswamb

Good Morning All i have a Ultrawebgrid defined like this [code] <igtbl:UltraWebGrid ID="ultraGridStudentsMixTypes" runat="server" Style="left: -8px; top: 375px" OnInitializeLayout="ultraGridStudentsMixTypes_InitializeLayout" OnDataBound="ultraGridStudentsMixTypes_DataBound" OnSelectedRowsChange="ultraGridStudentsMixTypes_SelectedRowsChange"> <Bands> <igtbl:UltraGridBand> <RowEditTemplate> <br /> <p align="center"> <input id="igtbl_reOkBtn" onclick="igtbl_gRowEditButtonClick(event);" style="width: 50px" type="button" value="OK" />&nbsp; <input id="igtbl_reCancelBtn" onclick="igtbl_gRowEditButtonClick(event);" style="width: 50px" type="button" value="Cancel" /></p> </RowEditTemplate> <RowTemplateStyle BackColor="Window" BorderColor="Window" BorderStyle="Ridge"> <BorderDetails …

0
70
Member Avatar for vuyiswamb

Good Afternoon All , i have a page that does some updates, and i have my own progress bar and there is a strange Ajax(i think so) progress bar that is showing and its making my page to be slow. [IMG]http://www.vbforums.com/attachment.php?attachmentid=71442&stc=1&d=1244725295[/IMG] As you can see there is a Small black …

0
63
Member Avatar for vuyiswamb

Good Day all i have a Ultrawebgrid i n my page and i display Data in this Way [CODE] STAFF CYCLES ========================= Galloway A Ms 20,22,23,24,25,26 Gama, E 20,22,24,25 Grieve S Ms 20,25,26 Jones D Dr 24,26[/CODE] and a user can select the Staff in the Grid by Holding a …

0
52
Member Avatar for vuyiswamb

Good Day I have a page that has a UserControl on it and i want to call a Method in the Host page that will fire when a textbox texchanged event got fire. [URL="http://www.vbforums.com/attachment.php?attachmentid=71093&stc=1&d=1242811920"]http://www.vbforums.com/attachment.php?attachmentid=71093&stc=1&d=1242811920[/URL] i want to Invoke the Function the the "[B]Remove Staff [/B]" Button that has been Disabled …

0
75
Member Avatar for vuyiswamb

Good Evening All I have a web Application that is compiling well with no Errors, i have Compiled each separately and worked well excluding the setup Project. i have to be honest, i once use the clean before i rebuilded the Solution and i came across this challenge. here is …

0
55
Member Avatar for vuyiswamb

Good Afternoon All I have a Control that looks like this [URL="http://www.tiyaneproperties.co.za/fading_Control.JPG"]http://www.tiyaneproperties.co.za/fading_Control.JPG[/URL] And this Control looks differently from versions of Internet explorer. In 7 and up it shows are the links shows you and in internet explorer 6 it shows the whole of it , if the list grows, it …

0
67
Member Avatar for vuyiswamb

Good Morning All I have a Menu Control [CODE] <asp:Menu ID="Menu2" runat="server" BackColor="AliceBlue" BorderColor="SteelBlue" BorderStyle="Solid" BorderWidth="1px" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" Height="20px" OnMenuItemClick="menureplace_MenuItemClick" StaticSubMenuIndent="10px" Width="87px"> <DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" /> <DynamicMenuStyle BackColor="White" BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" /> <StaticSelectedStyle BackColor="#5D7B9D" /> <DynamicSelectedStyle BackColor="#5D7B9D" /> <DynamicMenuItemStyle Font-Names="Verdana" Font-Size="10pt" ForeColor="#C00000" HorizontalPadding="5px" VerticalPadding="2px" /> <Items> <asp:MenuItem Text="Replace …

0
61
Member Avatar for vuyiswamb

Good Afternoon All In all my Application, i used to write my login screen and i will not have a problem. i have inherited the ASP.NET Application that uses a login control. Below are the pics of how it looks here is a code for Forget Password link [CODE] protected …

0
72
Member Avatar for vuyiswamb

Good Morning All I have a WebSetup Project and a Installer Class. I want to accept User [QUOTE]Database, Server,Username,Password and E-mail[/QUOTE] This is what i did so far. I have created a Websetup Class installer that looks like this [CODE] namespace ClassLib { [RunInstaller(true)] public class ClassLib : Installer { …

0
344
Member Avatar for vuyiswamb

Good Afternoon Guys Let me start here. i have been Builidng Win App and this was an easy task there. Now i have a Page that has a Datagridview and am Displaying this from a DataTable Through a SP like this [CODE] Create Proc [sde].[Check_Active_Valuation]as select LIS_KEY,FUNC_KEY,SUBSTRING(CONVERT(VARCHAR,V2.ADD_DATE,1),1,13)AS [ADD DATE],V2.NEW_IMPROVED_VALUE AS …

0
40
Member Avatar for vuyiswamb

hi All i realy need your Help. i have a Table named Property, this Table has a Field named "Lis_key" and Attrib_code and "Func_key", my Table can look like this [CODE] Lis_key ===========Attrib_code========================= Func_key====== ===================================================================== 01424545 1212033993 PV000000 01424545 Null GEOSS001 01424545 Null GEOSS002 01424545 Null GEOSS003 [/CODE] Figuire:1 Now …

0
69
Member Avatar for vuyiswamb

i have one Problem, please tell me what should i keep in mind, about the following Errors "Application uses Value of wrong type for the current operation" This is th errors in vb6 Set prmNum_key = ComNum_key.CreateParameter("Num_Key", adBigInt _ , adParamInput) Set prmExtension = ComExtension.CreateParameter("Extension", adBigInt _ , adParamInput, , …

0
54
Member Avatar for vuyiswamb

My company is using a third party software designed by other private company. there is a point where there is data redundacny on our tables and it requires me to do the data cleaning. i thought it would be better to fix the incorrect field with the procedure with those …

0
51

The End.