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: *

  1. Axoliien

    count with having greater than 1

    Uses exists and a subselect with a group by.
  2. Axoliien

    Is there any way to typedef in VB.NET

    Ah well, thanks!
  3. Axoliien

    Is there any way to typedef in VB.NET

    I was wondering if there is any way to typedef like in C++ in VB.NET. I have a lot of qualified references and would like to shorten their names. Thanks!
  4. Axoliien

    Can you query SQL Server permissions?

    I am trying to find a way to determine if a user is allowed access to tables in SQL server so I can handle permission management on the client side (a nice GUI to tell them not to do stuff they shouldn't be doing). I figure there should be some way to determine if the currently logged in user...
  5. Axoliien

    Wireless card keeps losing connection

    We have 3 computers in our house, one directly connected to the Netgear router, a laptop on wireless, and a desktop on wireless. I have secured our network and set up all of the devices for use on the network. The laptop is fine, but my desktop has problems. I always have "Very good" in the...
  6. Axoliien

    Argument Not Optional?????

    You must be sure to do calls correctly as well. There are a ton of ways to use function calling, which I think is one of the downsides to VB. I think these are all correct... 'Invalid SomeFunctionCall() 'Valid SomeFunctionCall 'Valid Call SomeFunctionCall 'Invalid...
  7. Axoliien

    Argument Not Optional?????

    You will be better off using early binding to help alleviate memory issues if your program errs for some reason. What you are looking for is probably an optional value, as exemplfied below. You can call the function with either one or two values. Example calls If Not...
  8. Axoliien

    Connecting between laptop on work domain and desktop at home

    We have a laptop at our office that connects to the network domain at work, and a desktop at home that connects to a workgroup (since we don't have a domain controller, or any user for one at home) and we want to find some way of connecting the two computers so we can share certain files back...
  9. Axoliien

    Outlook automation for copying appointments

    I am trying to automate a system of allowing users to copy their calendar appointments into a team calendar since we have several teams and it can get confusing and messy finding the team calendars and making sure everyone gets the item to the right place. I have been able to get the function...
  10. Axoliien

    Slow Program

    It sounds like perhaps you are using all of your memory when going to the larger number of records. When performing joins and complex queries, the computer loads as much data as possible into memory and performs the required action. If you are out of memory, the system is constantly reading...
  11. Axoliien

    Microsoft Access 10.0 Vs 11.0

    Sounds like you may be using the included calendar or another Active-X control, which tend to be changed in every version of office, causing issues. If you are using an Active-X calendar like the MS Calendar, or another external Active-X control, try removing it and seeing if you still get the...
  12. Axoliien

    SQL Server SP error with Disconnected Recordset

    Yes, I have tried it with no parameters, with 1 parameter of each, and with 2 parameters of the correct types. I even have tried type casting to ensure correct types whenever passing to the parameter instantiations. It's still a no-go, though I cannot find any reason why. When I take the SP...
  13. Axoliien

    SQL Server SP error with Disconnected Recordset

    Unfortunately, the ActiveConnection requires an object reference, which uses the set command.
  14. Axoliien

    SQL Server SP error with Disconnected Recordset

    I have been using a piece of code for a very long time now and have not had a problem with it, but now for some reason I am getting an error that says I cannot set the activeconnection of a recordset with a command as its source. I have been doing this for months with no problem, and still can...
  15. Axoliien

    Parameters for MS Access Query

    That is all I wanted, thank you PJ!
  16. Axoliien

    Parameters for MS Access Query

    I am trying to write a set of functions to allow a user to open a template and perform a mail merge on that template. I have asked this before, however the answer I received does not seem applicable to my needs. We have the following specifications: We have an MS Word template that we want to...
  17. Axoliien

    Automation between Word and Access

    To get the object you are wanting, just create an instance of a Word.Document object and set it equal to your initialization of your new Word.Document in the code above. Example: '--------------------------------------------------------------------------------------- ' Procedure ...
  18. Axoliien

    Parameter in Access query automation

    Alright, I'll take a look. Thanks PHV.
  19. Axoliien

    Parameter in Access query automation

    I am revamping some older code to work with some mail merge automation I set up between MS Access and MS Word, and all works great except one single query. One of the automation functions I designed allows the programmer to pass the name of an access query to the function, which in turn opens...
  20. Axoliien

    Calculating certain records on report

    I don't really understand your data and issue. If you could, please put some data and examples of calculations and results to help.

Part and Inventory Search

Back
Top