Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sd110404
  • Content: Threads
  • Order by date
  1. sd110404

    Dropdown list not populating..

    Hi All, Can someone point out where I am wrong? I tried all sorts of debug, replaced with array to populate in my drop down and all works fine, except my below code. DataTable dt = new DataTable(); dt = dataMyClient.GetAccountOwnerList(usrname); DropDownList.DataSource = dt...
  2. sd110404

    Change Color - TemplateField - Text

    Hello Everyone, Based on my previous post, I need some suggestion. I wasnt sure if I have to continue with the old post or create a new one. I have a gridview which has the following TemplateField. <asp:GridView id="grd" runat="server" OnRowDataBound="grd_RowDataBound"> <asp:TemplateField...
  3. sd110404

    Condition with TemplateField

    Hello Everyone, I have a gridview, with both BoundField and TemplateField, both displaying values from a DataTable. When I try the following code on OnRowDataBound property it works fine foreach (TableCell cell in e.Row.Cells) { if (e.Row.Cells.GetCellIndex(cell) == 1 &&...
  4. sd110404

    Syntax Error

    Hello Everyone, I have the following tables: Table A Table B -------- ----------------------------- A_ID A_NAME B_ID APP_ID APP_NAME 1 10001 Name1 2 10001 Name1...
  5. sd110404

    HttpWebRequest Syntax for Post method.

    Hello, Can someone please help me put this in place. I have an external api that I am connecting to, to update some data (which is in XML format). I have the following set of code to update the data XmlElement ticket = doc["Ticket"]; // doc is xmldoc foreach (XmlNode node in...
  6. sd110404

    Query Help - must be a simple one

    Hello Everyone, I have two tables almost the same structure eg: Table1 and Table2 both has the following fields along with couple other field. Table1/ Table2 -------------- JNo Ono Source ClientId StartDate ...... 1 1001 S1 2 01/01/2008 ...... 2 1002 S3 2...
  7. sd110404

    Sorting with Hypertext values in Datagrid - pls reply

    Hello All, This is my first project and now I am stuck at sorting data grid. The Data grid displays values from a stored procedure and the AllowSorting property of the datagrid is set to true. Its working fine for all the header text, except for one (Company Name). Company name is a link <a...
  8. sd110404

    Session Time Out

    I have a small web application developed in VB.Net. But it gets signed out very often. I have set timeout="720" in <sessionState> of web.config But still it times out. Any suggestion / help really appreciated. Thanks.
  9. sd110404

    Any Help - Urgent - Class Template

    Hi, I am new in implementing Templates. My .h file. class AnimalControl { public: DogCatcher* getDogCatcherRef(); void disturbance(); void incarcerate(Animal* temp_ptr); AnimalControl(); // constructor ~AnimalControl(); // destructor private: int startpos; //start point of...
  10. sd110404

    length of an array objects

    Hi, Can someone please assist/help me solve this problem, I tried my best all the help with the internet search. I will be really very thankful for any answers. I have a class A{}; and class B {}; inside Class B, I need to have an array of pointers object for Class A (dimensions size 10)...
  11. sd110404

    &lt;a href&gt; and disable right click -Thanks

    Hi , I have two questions: 1) I have a link (<a href...>) on my page for eg: when i type this on my browser (below url for example) www.xyz.com/log/product_info.php?p_id=50 I am displaying a link say "Hardness" (which is a link). On click of that link (hardness) I use window.open (to open a...
  12. sd110404

    Combinations in the where clause - Query

    Hi, Let me just brief the pbm. Lets take customer table with fields Customer ID, name, homePh, cellPh, workPh I want to display only those customer name who have only one phone number or no phone number (it can be in any combinations, like the customer might have only cellPh or only homeph...
  13. sd110404

    Validating the field before closing the form

    Hi Where am I wrong, When the user clsoe the form, I want to make sure that the Comment field is not empty. If its empty, then force them to enter and shouldnot close the form. else if its entered, then close the form. Why is DoCmd.CancelEvent not working? Private Sub Form_Close()...
  14. sd110404

    Query help.

    Hi, SELECT Right(DatePart('yyyy',Date()),2), DatePart('m',Date()), * FROM JobOrder WHERE (((JobOrder.JobOrderDate)>(Date()-DatePart('d',Date()))) AND ((JobOrder.QuoteID) Is Not Null) AND ((JobOrder.OrderID) Is Not Null)); The above query is returning the following recordset. Expr1 Expr2...
  15. sd110404

    Deletion based on combo box in Continuous Forms.

    Hi, I have a Continuous Forms with few fields (Item is combo box and Amount is text box which needs to be entered) in it.. Item Amount Payment 300.00 Sample 100.00 Extras 150.00 So on... Deletion and edition shouldnot be allowed on Payments Item. Forexample, I should be allowed to...
  16. sd110404

    help! -- CustomValidator without ControlToValidate property

    Hi there, I searched the forums here for help, but didnt come accross what i am looking for. I have added a custom validation in my form which calls InterSubCheck on OnServerValidate event. Below is the customvalidator defination of my aspx page. <asp:customvalidator id="Customvalidator6"...
  17. sd110404

    Fast Help Needed --- Miscrosoft Outlook 11.0 Object Library

    Hi, Let me quickly explain the problem. I am using outlook to send mail (with attachment) on clicking the button. So in Tools Reference I have checked "Miscrosoft Outlook 11.0 Object Library". And when I run the application in my system its working fine. This application is been placed in a...
  18. sd110404

    Urgent -- How to get the content of word in Report

    Hi, I have a word file with 3 pages (only text). In my Access forms, on click of a button I need to open the entire content of the word file as report. What are the ways to do this. I am then sending this report as fax (which is working fine). But not able to open the content of word in my...
  19. sd110404

    Help -- Query pbm

    Hi All, I have the following tables: Order (table) ------------- OrderID OrderDate O001 10/10/2004 O002 10/11/2004 Status (Table) -------------- SID OrderID ReferID Date 1 O001 R3 10/10/2004 2 O001 R5 10/10/2004 Refer (Table)...
  20. sd110404

    Help!!!---Email body Content question.

    Hi Everyone, I am trying to send a mail frm Access on a button click. It works very well. I am using the following code : Dim SubjectLine As String Dim strFilePath As String Dim PersonSendTo As String PersonSendTo = "info@info.com" SubjectLine = "My Subject" Dim appOutLook As...

Part and Inventory Search

Back
Top