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: Sanjeet1
  • Content: Threads
  • Order by date
  1. Sanjeet1

    Strored proc not working correctly:

    When I added more data to the database the fileorder was not working correctly because the reason was that there is a 1 to many relationship with cases and files. So I have to take caseid into consideration. I modified the stored to handle this but I am still having problems. When I try to move...
  2. Sanjeet1

    Stored proc not working correctly

    I have a file list inside a datagrid that looks like this: FileName FileDescription box box names moveup movedown cats cat names moveup move down moveup and move down are links that allow the userto rearrange the fileorder. This is how the data is...
  3. Sanjeet1

    My custom validation is not working correctly.

    My custom validation is not working correctly. I am trying to use it to display an error message if a file should be updated or not. When the page loads the filename is stored in viewstate _viewstate. The user can then select a file from the browse button and make changes. The custom...
  4. Sanjeet1

    not hitting a function

    I try calling the customvalidator here: private void Update_Click(object sender, System.EventArgs e) { if (!Page.IsValid) //I set a break point here return; -- --- -- Here is my fucntion: I set a bbreakpoint and it never hits the function. anysuggestions? private void...
  5. Sanjeet1

    Stringbuilder question

    I would like to include the Title.Text,CategoyId.SelectedItem.Text,EditAuthor.Text,StatusId.SelectedItem.Text, info in my email notification. I am sending an email to the submitter of a case. I am getting the info I need to send from the controls on the screen. Here is my code: private...
  6. Sanjeet1

    Problem nesting a datagrid. The Child datagrid is not display data

    I am having a problem passong in the categoary id into the child datagrid. I want the page to display Reviwers By caetogaries. For Ex. CATEGOARIES REVIWERS Cat1 PAUL JIM...
  7. Sanjeet1

    Problem getting a datagrid to display information.

    I have a datagrid called: dgRevCatDisplay. When the page loads no data gets displayed. I tried setting a breakpoint on the datagrid all the objects and methods that instantiate the datagrid seem to be ok. However in debug mode when I type the object name in the immediate window I get an...
  8. Sanjeet1

    PROBLEM OPENING a .NET SOLUTION

    When I try to open up a solution I get a dialog box with username and password. When I type in the username and passowrd (the same user name and password I use to log into windows) I get an error message stating user name nd password not correct or you don't have permission for this operation...
  9. Sanjeet1

    problems creatig a windows service

    I have a windows service. I am trying to build it so I can call it. I tried using the command: installutil.exe WindowsService1.exe but that did not work. Here s the ouput error message. C:\Documents and Settings\Administrator>installutil.exe C:\TEMP SANJEET\Raj's Mu ltihreaed App for...
  10. Sanjeet1

    Error messages in a multithreaded application.

    I have a windows service. The windows service has 2 files. Winsowsservice.cs and Thread.cs. The windowsservice receives a byte array converts it to a string and passes it to a thread instance in the thread.cs file. Here is the code: byte[] b=new byte[1024]; int k=s.Receive(b)...
  11. Sanjeet1

    Using the RegEx mehod to insert string values ino array elemens.

    Using the RegEx mehod to insert string values ino array elemens. I retreive a byte array through a tcp client. I then inser the byte array ino a string. string cs = encoding.GetString(b); The String variable contains info similar to this: MSH|^~\\&|AXO|Axolotl Corp.|Elysium...
  12. Sanjeet1

    Displaying a pdf file in .net page

    I have a default page and image page. The default page calls a web service, passs three parameers are retreives the URL for the pdf documnt sitting in my images folder. Once I get the URL I need to display the pdfdocument on the images page. Any idea how this is done? How would I do that in...
  13. Sanjeet1

    Problems calling a web service from an .aspx page

    When I call my web service from a web service I use this line of code: ImageDB(0) = WS.RetreiveImageDB(userid, patientid, recordid) This is the format of my web service: <WebMethod()> _ Public Function RetreiveImageDB(ByVal uid As String, ByVal pid As String, ByVal rid As String) As...
  14. Sanjeet1

    How do I insert an image ino an image object from a filestream?

    When I call this web service I receive a byte array that contains an image. The web page that calls the web service contains an Image object. I need to display the mage. Here is my code. How do I retreive the image from the byte array and insert it into the Image object? 'Call Webservice to...
  15. Sanjeet1

    DIsplaying an image called web services

    Here is my my web service: I am trying to retreive an image data type. <WebMethod()> _ Public Function RetreiveImageDB(ByVal uid As String, ByVal pid As String, ByVal rid As String) As String Dim userid As String Dim patientid As String Dim recordid As String...
  16. Sanjeet1

    C# Cookie problem

    I am writing a cookie in c# to pass to a different server. I am not getting any error messages when I compile. The cookie does not work correctly. When I step through the debugger I can see the values being passed into the cookie. Do you have any suggestions...

Part and Inventory Search

Back
Top