Search:

Type: Posts; User: Besoup

Page 1 of 13 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    2
    Views
    3,633

    Re: [RESOLVED] WCF Dynamic URL?

    yeah I am a dummy... should probably return something in the function... works now... thanks me! :P
  2. Replies
    2
    Views
    3,633

    Re: WCF Dynamic URL?

    Trying to use this code to that I stumbled upon... eventually I'd like to throw a variable into the endpointaddress:



    Public Shared Function GetUnprocessedPushFiles(ByVal stRegion As...
  3. Replies
    2
    Views
    3,633

    [RESOLVED] WCF Dynamic URL?

    Hey all,
    I have a windows app that is being introduced to a new WCF service. I have it all working but I would like to make the client side code pull the URL to the service from the appconfig file....
  4. Replies
    1
    Views
    925

    Re: SSRS 2008 Parameter types?

    Found it... I am blind.
  5. Replies
    1
    Views
    925

    [RESOLVED] SSRS 2008 Parameter types?

    Hey all,
    I've done most of my reporting in SSRS 2005, now creating one in 2008 and not seeing anywhere to specify the data type of a parameter. Am I blind or is this a new "feature"?
  6. Replies
    8
    Views
    874

    Re: How should I be using Numbers in SQL?

    no need for the single quotes around the integer.
  7. Thread: Large Tables

    by Besoup
    Replies
    6
    Views
    493

    Re: Large Tables

    Have you run the queries that you using through Query Analyzer? It will recommend what indexes you should have in place, but keep in mind that too many indexes could hurt performance more than help.
  8. Replies
    3
    Views
    593

    Re: Populating with DataSource

    First of all your ddl_project_budget is not the Datasource, it is your control. You're going to want to populate your control's datasource property with some kind of datasource( ie. datatable,...
  9. VS 2005 Re: [RESOLVED] Get First Excel Worksheet Name Re-opened

    Infragistics 9 CLR 3.5
  10. VS 2005 Re: [RESOLVED] Get First Excel Worksheet Name Re-opened

    Resolved again... using a 3 party dll to get it done.
  11. VS 2005 [RESOLVED] Get First Excel Worksheet Name Re-opened

    original post here:
    http://www.vbforums.com/showthread.php?t=581216

    The DAO method that originally considered to be my resolution isn't working with excel 2007 workbooks. Anyone have any ideas on...
  12. Replies
    3
    Views
    2,527

    VS 2005 Re: [RESOLVED] Get First Excel Worksheet name

    thanks, yeah was trying to leave it open to see if anyone came up with a better solution but I'll stick with the DAO one.
  13. Replies
    3
    Views
    2,527

    VS 2005 Re: Get First Excel Worksheet name

    'booo had to use DAO
    Dim ExcelWB As DAO.Database
    Dim tbl As DAO.TableDef
    Dim JetEngine As New dao.DBEngine
    Dim SheetName As String
    ExcelWB =...
  14. Replies
    3
    Views
    2,527

    VS 2005 [RESOLVED] Get First Excel Worksheet name

    I've tried using the following but it is returning the names alphabetically any ideas on how to get the first sheet in the workbook's name without using the excel object?


    Dim objConn As...
  15. Replies
    7
    Views
    719

    Re: MSSQL using UDF across servers

    yeah that gives the same error... I have been asking around and did some poking around, everything points to wrapping a sp around the function then calling the sp. Gonna try that in the morning.
  16. Replies
    7
    Views
    719

    Re: MSSQL using UDF across servers

    I moved the ] to the end of the function name and now I get a new error message:
    Invalid column name 'servername'
  17. Replies
    7
    Views
    719

    Re: MSSQL using UDF across servers

    yeah the error message contains the full path

    ServerName.DBName.dbo.Functionname
  18. Replies
    7
    Views
    719

    Re: MSSQL using UDF across servers

    The joins work fine across servers, do those not require linked server being turned on?
  19. Replies
    7
    Views
    719

    MSSQL using UDF across servers

    Hey all,
    I am running into an issue trying to call a user defined function across servers. Then error I am getting is The multi-part identifier "myserver.database.schema.functionname" could not be...
  20. Replies
    3
    Views
    724

    VS 2005 Re: OleDB/Excel Sheet Import

    Got it!

    Public Function GetSheetName(ByVal fileName As String) As String
    Dim objConn As OleDb.OleDbConnection
    Dim dt As System.Data.DataTable = Nothing

    Try
    ...
  21. Replies
    3
    Views
    724

    VS 2005 Re: OleDB/Excel Sheet Import

    Thanks,
    I actually did get it working via the Excel Object but I think I would like to stick to OleDB if it is possible.
  22. Re: [RESOLVED] [2005] Highlight row in gridview depending on a cell's value

    looks like you're using vs2003... DataGridView is the earlier version of the Gridview control which is probably why those properties aren't being recognized.

    I don't have alot of experience with...
  23. Re: [RESOLVED] [2005] Highlight row in gridview depending on a cell's value

    that is a GridView.
  24. Replies
    3
    Views
    724

    VS 2005 [RESOLVED] OleDB/Excel Sheet Import

    Hey all,
    I currently have some code to import a spread into a dataset but it is dependant on the name of the sheet ie sheet1$. I would like this import to work on the first sheet of a xls file no...
  25. Replies
    0
    Views
    597

    SSRS IIF question

    Why doesn't this work? :P

    =IIF(Fields!OnHandQty.Value <> 0 ,IIF(Fields!FourWeekAvg.Value <> 0,Format(Fields!OnHandQty.Value/Fields!FourWeekAvg.Value, "0.00"), "N/A"),"N/A")

    The first IIF seems...
  26. Replies
    7
    Views
    675

    Re: Access DB not closing after read

    umm what if this condition isn't met:



    If dbread.Read Then
    rf.Text = dbread(0)

    End If
    dbread.Close()
  27. Thread: Crystal report

    by Besoup
    Replies
    2
    Views
    502

    Re: Crystal report

    This post should be directed to the Reporting forum but since it's here, the sort order can be set in a couple ways. It could be in your SQL statement or it could be directly on the crystal report...
  28. Replies
    3
    Views
    874

    VS 2005 Re: Using Response.Redirect("Login.aspx")

    what does your login logic look like?
  29. Replies
    22
    Views
    1,488

    Re: How to hide sql code to client?

    I was going to recommend maybe creating an EXE for the client to run but you're going to have to do that every time a bug is found and data needs to be corrected. Your best bet is to talk to your...
  30. Re: [2005] Ideas for shopping basket, online store.

    In the past, I've created a table to use as a cart. Basically storing the ItemID, QTY and Price along with a GUID. I would create the GUID once the customer first accesses the store and would throw...
  31. Replies
    10
    Views
    1,080

    Re: [2005] Too many connections - Code check

    The code looks ok to me... is there anyone else connecting to the database?
  32. Re: Conversion from string "" to type 'Double' is not valid ERROR

    You're assigning an empty textbox to a variable type double, just like the error says. Doubles must be assigned a number.

    ps. Welcome to the forums!
  33. Replies
    6
    Views
    921

    Re: Ajax Scriptmanager

    can you post your markup? What do you have under your page directive?
  34. Replies
    11
    Views
    762

    Re: [2005] Write a program that uploads files

    Ok, now to think about the size of the zip file... how big are they typically? You don't want to run into alot of timeouts on your web page if they're too big.
  35. Replies
    11
    Views
    762

    Re: [2005] Write a program that uploads files

    Not exactly sure how to do it but I googled "multiple file upload asp.net" and came across this:

    http://www.dotnetcurry.com/ShowArticle.aspx?ID=68&AspxAutoDetectCookieSupport=1

    about halfway...
  36. Replies
    11
    Views
    762

    Re: [2005] Write a program that uploads files

    What kind of app is in place now? I would just create a new version of what the user is accustomed to now and make it work better. :)
  37. Replies
    11
    Views
    762

    Re: [2005] Write a program that uploads files

    Hmm... If you're going across to another network, you'll need IIS set up on the destination machine for either FTP or HTTP traffic. If you're going to set up HTTP, you might as well go web base and...
  38. Replies
    11
    Views
    762

    Re: [2005] Write a program that uploads files

    Is it an automatic uploading service or will someone be triggering the file upload?

    I would suggest creating a windows service to run in the background if it's all going to be automatic.

    If it...
  39. Replies
    3
    Views
    740

    Re: [2008] Showing GridView even no record

    You could probably add a blank row to your gridview's datasource.
  40. Replies
    4
    Views
    3,378

    Re: [2005] FileSystem.Rename Error

    Glad to help. Please remember to mark your thread Resolved.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width