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

    looking for projected field functionality for a textbox similar to ootb lookup field

    When a use enters data into a text box I want to also populate another field with the ID of the data they selected. I currently have a autocomplete textbox bring back a list of items from another list. The list I am pulling data from is to big for a dropdown box and a lookup field is to slow...
  2. SpeedBWild

    The state information is invalid for this page and might be corrupted.

    I have a gridview which I populate with mostly integer data. When the use clicks the edit link I replace the label with dropdowns which are populated from a datatable. I will have up to 27 rows of data for this gridview with no more than 15 columns of data. Of the 15 columns all will be...
  3. SpeedBWild

    IIS worker process for the launched URL is not currently running

    I am trying to debug a web application in VS2010 on a Windows 7 machine. I can view the web site through the browser just fine, but when I go into debug - start debugging (f5) I get the following message. Unable to start debugging on the web server. The IIS worker process for the launched...
  4. SpeedBWild

    SharePoint 2010 and Active Directory

    Does SharePoint 2010 require Active Directory?
  5. SpeedBWild

    SharePoint 2010 fresh install

    I have a fresh install of SharePoint 2010 that my system administrator setup. I am now ready to configure the site, but it tells me I have to be a Farm Administrator. I am in the administrator group so I thought I could add my self as a Farm Administrator, but I can't. The message I am...
  6. SpeedBWild

    batch stuck at posting

    Under transactions - purchasing - series post, I have two batches that are stuck in "posting". In SY00500, I see three records for these two files. One File has a BCHSOURC of PM_Trxent, series 4 and MKDTOPST =1. The other file has BCHSOURC of RM_Cash, series 3 with MKDTOPST =0 and BCHSOURC...
  7. SpeedBWild

    Bank book decimal point

    From the front end of GP, all of my data is at 2 decimal points. In looking at the backend table this is not the case. How does this happen? How do I fix it? Do I need to fix all the data or is there a rountine I can run that will do this for me?
  8. SpeedBWild

    Series Posting

    Under Transactions -Financial - Series Posting I mark a batch and then click on post. I get a message starting I have not marked a batch for posting. At that point I click on the batchId link which takes me to Batch Entry window. From there I try to select the batch in question. I get a...
  9. SpeedBWild

    Trying to reconcile transaction

    Under Transactions -Financial-Reconcile click on Transactions then reconcile. The difference is $0.00 but the system is giving me the following message: "The difference must be zero before you can reconcile this checkbook" How do I fix this. Where should I be looking?
  10. SpeedBWild

    partical payment amount missing

    I received a payment of $794.40. When I go to cards- sales-summary - and enter customer name I see that the payment has been applied to two invoices. The combined total of the two invoices is $138.00. When I expand the payment information the amount remainding is zero. How do I find the...
  11. SpeedBWild

    Recompiling SQL stored procedures

    Has anyone used this tool? Checklinks has been running for over 6 hours today. I don't see any issue with our SQL Server, but this process normally only takes 1 hour, not 6 and it hasn't even completed yet. Any ideas?
  12. SpeedBWild

    checklinks sales series

    I am running checklines on the sales series. In the past this has taken about a hour to process. Today we are going on 4 hours. Does anyone have any idea what might be taking it so long? Is there any place I can look to see what is happening. From what I can tell the process runs on the...
  13. SpeedBWild

    compile AIX question

    I am very new to AIX. I am trying to compile my code, I get no compile errors but my customer can not run it. In doing some research I found that I need to statically add a libaray. I have now done that. I also found that I need to compile for 64 bit. I have done that as well. Now when I...
  14. SpeedBWild

    issues when convert a double to a long

    I am reading in a line of data so that I can insert the text data into an array. Here is my code: double rate; rate = atof (&wktxt[k]); /* &wktxt[k]=2.046 */ rate *= 1000.0; prate[cin][x] = (long) rate; The result of prate[cin][x] is 2045 I have hundreds of values in the text file all of...
  15. SpeedBWild

    How do I read the return value from a function that returns a pointer?

    I have a function that is designed as const char* NameOfFunction(void); How do I get the result from that function call? I can not change the function call. Here is what I have tried. char *retValue; retValue=NameOfFunction; this does not seem to work. Any help would be appreciated.
  16. SpeedBWild

    version change of DLL in GAC

    I am trying to place a new DLL in the GAC. When compiling my .NET project with takes precedence the bin directory or the GAC. I have change the dll in my application. I have verified the properties and it shows that I am referencing the correct version. I have the local copy set to true...
  17. SpeedBWild

    Remote Access Connection Manager

    When trying to make a network connection I get the following error. Error 711. A configuration error on this computer is preventing this connection. How do I fix this? I went into services and tried to start the Remote Access Connection Managerbut I got an error there as well. I also went...
  18. SpeedBWild

    Allow user to download files

    I am trying to setup a web page that allows users to download any file that is listed. I check the extension so I can set the response.contenttype, but it doesn't seem to matter. I found an example online that said I should set the response.header and response.Contenttype, any ideas?
  19. SpeedBWild

    upload a file then close the form

    Once I upload a file. I would like to close the window and return a value back to the parent window. Using retval=window.showModalDialog I can open the upload window. My form tag for the upload window is <form id="form1" enctype="multipart/form-data" runat="server" method="post">. Once the...
  20. SpeedBWild

    __doPostBack

    On click of a button a open a new window with tue code below. Me.PageBody.Attributes.Remove("onload") Session("FileName") = fileName Me.PageBody.Attributes.Add("onload", "jsLoadWindow();") Here is the jsLoadWindow function as well. function jsLoadWindow() { var retval=""; var features=...

Part and Inventory Search

Back
Top